feat: Первый коммит

This commit is contained in:
2021-04-09 00:26:44 +03:00
parent 4375da2c2e
commit ef43c10abb
14 changed files with 377 additions and 73 deletions

6
backend/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.8
ENV PYTHONUNBUFFERED=1
WORKDIR /code
COPY requirements.txt /code/
RUN pip install -r requirements.txt
COPY . /code/