Disable healthcheck in Dockerfile as well

This commit is contained in:
Sylvain Huguet 2024-03-31 11:34:03 +02:00
parent daa90286d3
commit 483e2835c4

View File

@ -26,7 +26,7 @@ RUN npm cache clean --force \
EXPOSE 4100
HEALTHCHECK --interval=5m --timeout=3s \
CMD wget --no-verbose --tries=1 --spider http://localhost:4100/ || exit 1
# HEALTHCHECK --interval=5m --timeout=3s \
# CMD wget --no-verbose --tries=1 --spider http://localhost:4100/ || exit 1
CMD [ "npm", "start" ]