microblog.pub/setup_wizard/Dockerfile
Jack Laxson f8d341f94a wizard fixup (#55)
* Retool dockerfile to stick to 3.7 & add maintainer, change wizard to not default always to "app", run when .env exists (like it does in the git tree)

* don't mix up microblog.pub v. micropub
2019-06-17 22:55:39 +02:00

8 lines
164 B
Docker

FROM python:3.7
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
LABEL maintainer="t@a4.io"
LABEL pub.microblog.oneshot=true
CMD ["python", "wizard.py"]