From 838a24c8a50e27d886596327d842f9750ac30063 Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 20 Jul 2023 16:59:46 -0500 Subject: [PATCH] Update:Remove healthcheck from Dockerfile --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f9297da..3b9a7462 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,9 +32,5 @@ RUN apk del make python3 g++ ENV NODE_OPTIONS=--max-old-space-size=4096 EXPOSE 80 -HEALTHCHECK \ - --interval=30s \ - --timeout=3s \ - --start-period=10s \ - CMD curl -f http://127.0.0.1/healthcheck || exit 1 + CMD ["node", "index.js"]