Bootstrap something to start

This commit is contained in:
Luke Murphy
2020-06-30 20:28:47 +02:00
parent 26caa797b2
commit 7dad478dda
11 changed files with 138 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3.8-alpine
WORKDIR /app
ADD . /app
RUN pip install -r requirements.txt
CMD ["python", "magic_app/app.py"]