We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70444d commit c4559e1Copy full SHA for c4559e1
Dockerfile
@@ -21,4 +21,10 @@ COPY requirements.txt .
21
RUN pip install -r requirements.txt
22
23
COPY plan_monitor ./plan_monitor
24
-ENTRYPOINT ["python", "-m"]
+
25
+ENV TINI_VERSION v0.19.0
26
+ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
27
+RUN chmod +x /tini
28
29
+ENTRYPOINT ["/tini", "--"]
30
+CMD ["python", "-m"]
0 commit comments