Draft create

This commit is contained in:
2020-03-31 14:57:04 +02:00
parent 4d0f7c4750
commit adb9e0b804
23 changed files with 552 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:onbuild
COPY requirements.txt .
ENV PORT 8080
EXPOSE 8080
ENTRYPOINT ["python"]
CMD ["app.py"]