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:
parent
adc063eb7a
commit
4972e56ad2
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue