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 b918342 commit 6f12dc5Copy full SHA for 6f12dc5
Dockerfile
@@ -35,14 +35,15 @@ ENV PORT=3000 \
35
36
EXPOSE $PORT
37
38
-HEALTHCHECK --interval=30m --timeout=60s --start-period=5s \
39
- CMD curl -f http://${HEALTH_CHECK_USERNAME}:${HEALTH_CHECK_PASSWORD}@localhost:${PORT}/health_check.txt || exit 1
+HEALTHCHECK --interval=60s --timeout=15s --start-period=5s \
+ CMD curl -f http://localhost:${PORT}/health_check.txt || exit 1
40
41
ARG USER=html2rss
42
ARG UID=991
43
ARG GID=991
44
45
RUN apk add --no-cache \
46
+ 'curl>=8' \
47
'gcompat>=0' \
48
'tzdata>=2024' \
49
'libxml2>=2' \
Rakefile
@@ -72,4 +72,6 @@ ensure
72
sh 'docker stop html2rss-web-test'
73
sh 'docker rm html2rss-web-test'
74
end
75
+
76
+ exit 1 if $ERROR_INFO
77
0 commit comments