We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb76c34 commit 681d293Copy full SHA for 681d293
Dockerfile
@@ -2,7 +2,7 @@ FROM python:3
2
3
WORKDIR /usr/src/app
4
5
-RUN pip install --no-cache-dir flask google-api-python-client google-auth-oauthlib
+RUN pip install --no-cache-dir flask google-api-python-client google-auth-oauthlib waitress
6
7
RUN apt update
8
RUN apt-get -qq install vim clang-6.0
@@ -12,4 +12,4 @@ COPY static static/
12
COPY templates templates/
13
COPY data data/
14
15
-ENTRYPOINT [ "python", "./main.py" ]
+CMD [ "python", "-u", "main.py" ]
0 commit comments