From 0b9eb3338a34682aba1ea00ca4996da58eb0704b Mon Sep 17 00:00:00 2001 From: akshat5302 Date: Mon, 2 Mar 2026 18:07:31 +0530 Subject: [PATCH] fix: Update healthcheck endpoint in Dockerfile to target /spaces/ path --- 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 4c121fa7463..b69ac4a1eb5 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"]