fix(reward): correct health check path to /api/v1/health

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-10 10:16:57 -08:00
parent adc063eb7a
commit 4972e56ad2
1 changed files with 1 additions and 1 deletions

View File

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