Remove HEALTHCHECK (use Coolify builtin)

This commit is contained in:
2026-03-19 19:48:31 +09:00
parent 820b3a2d96
commit 67417e1ede

View File

@@ -4,5 +4,4 @@ COPY package*.json ./
RUN npm install --omit=dev RUN npm install --omit=dev
COPY . . COPY . .
EXPOSE 3000 EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 CMD wget -qO- http://localhost:3000/health || exit 1
CMD ["node", "server.js"] CMD ["node", "server.js"]