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 d882ca3 commit 0545bc4Copy full SHA for 0545bc4
scripts/Dockerfile
@@ -13,7 +13,9 @@
13
# application directory
14
ARG appdir=/usr/src/app
15
16
-# support roundup install from 'local' directory or from 'pypi'
+# support roundup install from 'local' directory,
17
+# 'local_pip' local directory using pip to install or
18
+# latest release from 'pypi'
19
ARG source=local
20
21
FROM python:3-alpine as build
@@ -100,6 +102,9 @@ EXPOSE 8080/tcp
100
102
RUN mkdir tracker
101
103
VOLUME $appdir/tracker
104
105
+HEALTHCHECK --start-period=1m \
106
+ CMD wget -q -O /dev/null --no-verbose http://localhost:8080/issues/
107
+
108
# do not run roundup as root
109
RUN adduser -D -h /usr/src/app roundup
110
USER roundup
0 commit comments