aptly-publish/Dockerfile
2022-05-02 00:39:47 +02:00

7 lines
186 B
Docker

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