first commit

This commit is contained in:
2020-03-09 16:50:22 +01:00
commit 44330a5c67
5 changed files with 325 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3
WORKDIR /app
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . ./
CMD ["python3" "app.py"]