init work on standalone autoconf

This commit is contained in:
bunkerity
2020-12-08 23:27:23 +01:00
parent 419fdfc86e
commit fd0a6412d0
5 changed files with 123 additions and 0 deletions

11
autoconf/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
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"]