Initial commit

This commit is contained in:
2021-11-17 19:31:43 +01:00
commit fb4589a696
4 changed files with 77 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.9-slim
ADD requirements.txt /app/
WORKDIR /app/
RUN pip3 install -r requirements.txt
ADD app.py /app/
EXPOSE 8000
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]