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
This commit is contained in:
Jack Laxson
2019-06-17 16:55:39 -04:00
committed by Thomas Sileo
parent 42bf96e44a
commit f8d341f94a
3 changed files with 10 additions and 7 deletions

View File

@@ -1,5 +1,7 @@
FROM python:3
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"]