f8d341f94a
* 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
7 lines
164 B
Docker
7 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"]
|