structure done
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-04-15 12:15:16 +02:00
parent 00975334a0
commit 2c63590b0d
14 changed files with 416 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.9
ADD requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
ADD server /server/
WORKDIR /server/
ARG RELEASE_ID
ENV RELEASE_ID ${RELEASE_ID:-""}
CMD ["python3", "main.py"]