7 lines
186 B
Text
7 lines
186 B
Text
|
FROM alpine
|
||
|
ADD entrypoint.py /bin/
|
||
|
RUN chmod +x /bin/entrypoint.py
|
||
|
RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip
|
||
|
RUN pip install debian-parser
|
||
|
ENTRYPOINT /bin/entrypoint.py
|