1
0
Fork 1
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-01-14 09:04:27 +00:00
microblog.pub/setup_wizard/Dockerfile
2019-04-13 10:03:43 +02:00

5 lines
102 B
Docker

FROM python:3
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
CMD ["python", "wizard.py"]