From fcd4aa400feb5bcab637b773f83d5e469bbaf716 Mon Sep 17 00:00:00 2001 From: Egor Kuzmichev Date: Wed, 25 Nov 2020 12:26:08 +0300 Subject: [PATCH] Revert "Add HEALTHCHECK to Dockerfile" This reverts commit 87d2eef8fbb3b00c503e53efe60313064044a482. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd82b8ca1..22a5b38cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,4 @@ ENV NODE_ENV production ENV CONFIG /config.js COPY --from=builder /appBuild/ . RUN npm install --production -HEALTHCHECK --interval=5m --timeout=3s --start-period=2m \ - CMD curl --fail http://localhost:3000 || exit 1 CMD node --max-old-space-size=4096 /code/bin/run.js --script /code/${MODULE}.js --config ${CONFIG}