From 4972e56ad213b5e8ccf6d6fb2f3c4ebe9dbf6a3a Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 10 Dec 2025 10:16:57 -0800 Subject: [PATCH] fix(reward): correct health check path to /api/v1/health MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/reward-service/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/reward-service/Dockerfile b/backend/services/reward-service/Dockerfile index 3be05565..fc213b26 100644 --- a/backend/services/reward-service/Dockerfile +++ b/backend/services/reward-service/Dockerfile @@ -80,7 +80,7 @@ EXPOSE 3005 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=60s --retries=3 \ - CMD curl -f http://localhost:3005/health || exit 1 + CMD curl -f http://localhost:3005/api/v1/health || exit 1 # Start service with migration CMD ["/app/start.sh"]