bunkerweb/autoconf/Dockerfile
2020-12-08 23:27:23 +01:00

12 lines
165 B
Docker

FROM alpine
RUN apk add py3-pip && \
pip3 install docker
COPY *.py /opt/
RUN chmod +x /opt/entrypoint.py
VOLUME /etc/nginx
ENTRYPOINT ["/opt/entrypoint.py"]