From 5c9f2a17c21b41e1d20203756a3a437ff2026304 Mon Sep 17 00:00:00 2001 From: Akshat Jain Date: Mon, 2 Mar 2026 18:52:57 +0530 Subject: [PATCH] fix: Update healthcheck endpoint in Dockerfile to target /spaces/ path (#8674) --- apps/space/Dockerfile.space | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/space/Dockerfile.space b/apps/space/Dockerfile.space index 4c121fa74..b69ac4a1e 100644 --- a/apps/space/Dockerfile.space +++ b/apps/space/Dockerfile.space @@ -86,7 +86,8 @@ WORKDIR /app/apps/space EXPOSE 3000 +RUN apk add --no-cache curl HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ - CMD curl -fsS http://127.0.0.1:3000/ >/dev/null || exit 1 + CMD curl -fsS http://127.0.0.1:3000/spaces/ >/dev/null || exit 1 CMD ["npx", "react-router-serve", "./build/server/index.js"]