aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2021-09-25 01:19:52 -0700
committerGitHub <noreply@github.com>2021-09-25 01:19:52 -0700
commit6173d7df609bc3ab071d5d9e34ce1eb1cb05d99e (patch)
tree7761138b01c20c5d150753e33864aa87a30b09d2 /Dockerfile
parentb2a31c0701e1938fae407cd3afc3e1b0dc46eaa9 (diff)
parent6dd8342bf08188622116e242122bb25b42085d93 (diff)
downloadhomer-6173d7df609bc3ab071d5d9e34ce1eb1cb05d99e.tar.gz
homer-6173d7df609bc3ab071d5d9e34ce1eb1cb05d99e.tar.zst
homer-6173d7df609bc3ab071d5d9e34ce1eb1cb05d99e.zip
Merge pull request #260 from vosdev/main
Add healthcheck to Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 19d01f8..d7179fc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,6 +25,9 @@ COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist /www/
25COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets 25COPY --from=build-stage --chown=${USER}:${GROUP} /app/dist/assets /www/default-assets
26COPY entrypoint.sh /entrypoint.sh 26COPY entrypoint.sh /entrypoint.sh
27 27
28HEALTHCHECK --interval=5s --timeout=5s --retries=3 \
29 CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1
30
28EXPOSE ${PORT} 31EXPOSE ${PORT}
29VOLUME /www/assets 32VOLUME /www/assets
30ENTRYPOINT ["/bin/sh", "/entrypoint.sh"] 33ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]