This commit is contained in:
2020-03-29 16:48:34 +02:00
commit d098dc859b
3 changed files with 28 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3
WORKDIR /app
COPY . ./
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3", "app.py"]