From 0485ce4b070690db23925176aa8e963cc160a0f0 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:48:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix(auth):=20correct=20healthche?= =?UTF-8?q?ck=20endpoint=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- services/mana-core-auth/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/mana-core-auth/Dockerfile b/services/mana-core-auth/Dockerfile index f34edf7ed..0737aa576 100644 --- a/services/mana-core-auth/Dockerfile +++ b/services/mana-core-auth/Dockerfile @@ -69,7 +69,7 @@ EXPOSE 3001 # Health check - uses /health/ready to verify database connectivity HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:3001/health/ready || exit 1 + CMD wget --no-verbose --tries=1 --spider http://localhost:3001/health || exit 1 # Start the application ENTRYPOINT ["docker-entrypoint.sh"]