We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 312a96e commit 607a9f5Copy full SHA for 607a9f5
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM python:3.8-slim-buster
2
+WORKDIR /app
3
+ADD requirements.txt .
4
+RUN pip3 install -r requirements.txt
5
+COPY . .
6
+RUN mkdir logs \
7
+ && touch ./logs/app.log \
8
+ && chmod 777 ./logs/app.log
9
+EXPOSE 8080
10
+CMD ["python", "./app.py"]
0 commit comments