fix: Update healthcheck endpoint in Dockerfile to target /spaces/ path (#8674)

This commit is contained in:
Akshat Jain 2026-03-02 18:52:57 +05:30 committed by GitHub
parent 9425c66eb5
commit 5c9f2a17c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"]