This commit is contained in:
2020-10-02 03:55:30 +02:00
commit 4a76d7ac00
5 changed files with 204 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD [ "python", "-u", "./main.py" ]