Upload app

This commit is contained in:
2022-03-05 21:08:02 +00:00
parent c8a2c5d59e
commit 2455bc5e93
13 changed files with 507 additions and 90 deletions

11
Dockerfile Executable file
View File

@@ -0,0 +1,11 @@
FROM python
RUN pip install --upgrade pip
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY ./src .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]