This commit is contained in:
2022-04-23 13:08:25 +03:00
parent 0533b4f5e8
commit f9c42319aa
3 changed files with 77 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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"]