Add the in-progress setup wizard

This commit is contained in:
Thomas Sileo
2019-04-13 10:03:43 +02:00
parent 2ee9427ce8
commit 4c0e81224f
3 changed files with 74 additions and 0 deletions

5
setup_wizard/Dockerfile Normal file
View File

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