prepare for deploy

This commit is contained in:
knst-kotov
2021-07-26 07:05:08 +00:00
parent d304362684
commit 9648870f39
7 changed files with 471 additions and 315 deletions

View File

@@ -1,4 +1,6 @@
FROM python:3.9
FROM python:3.8
EXPOSE 80
RUN pip3 install pipenv
@@ -9,4 +11,6 @@ COPY Pipfile.lock ./
RUN set -ex && pipenv install --deploy --system
COPY . .
COPY . .
CMD ["python", "server.py"]