first commit

This commit is contained in:
2020-03-09 16:51:00 +01:00
commit 0cff76c6a0
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"]