From e62782f627452ffa3dd9c67630f99346ac8d4787 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 13 Feb 2026 19:35:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(zitare):=20correct=20health?= =?UTF-8?q?=20check=20endpoint=20path=20in=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed /api/health to /health to match actual endpoint Co-Authored-By: Claude Opus 4.5 --- apps/zitare/apps/backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/zitare/apps/backend/Dockerfile b/apps/zitare/apps/backend/Dockerfile index 4c3d20738..2ca7981e9 100644 --- a/apps/zitare/apps/backend/Dockerfile +++ b/apps/zitare/apps/backend/Dockerfile @@ -76,8 +76,8 @@ WORKDIR /app/apps/zitare/apps/backend EXPOSE 3007 # Health check -HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:3007/api/health || exit 1 +HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \ + CMD wget --no-verbose --tries=1 --spider http://localhost:3007/health || exit 1 # Run entrypoint script ENTRYPOINT ["docker-entrypoint.sh"]