aptly-publish/Dockerfile

7 lines
186 B
Docker
Raw Normal View History

2022-05-02 00:39:47 +02:00
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