first commit

This commit is contained in:
2020-07-13 01:07:56 +02:00
commit 6cdf4d5197
28 changed files with 2124 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM tiangolo/meinheld-gunicorn-flask:python3.7
RUN pip install flask
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app