stabledock

This commit is contained in:
tonyrewin 2022-07-21 19:06:30 +03:00
parent a627bfe043
commit 2ff715eb50

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM python:3.8
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]