This commit is contained in:
2022-05-27 11:21:49 +03:00
commit ca80875372
14 changed files with 438 additions and 0 deletions

7
code/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3
COPY requirements.txt /requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r /requirements.txt
COPY . /code/
WORKDIR /code
CMD ./start.me