Запихнул в docker-compose

This commit is contained in:
2021-10-18 15:16:02 +00:00
parent 6cd33f25be
commit 32a2678170
5 changed files with 25 additions and 2 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:latest
ADD . /app
WORKDIR /app
RUN pip3 install --upgrade pip && pip3 install -r requirements.txt
EXPOSE 8080
CMD python3 main.py