Merge branch 'main' into dev

This commit is contained in:
2021-07-29 20:31:03 +03:00
17 changed files with 682 additions and 115 deletions

View File

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