fix: update HEALTHCHECK to use /health endpoint on port 8080

PRs #125/#127 merged /health endpoint to main before this branch.
Update HEALTHCHECK URL from /api/v3/current to /health to match.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-04-10 14:01:58 -05:00
parent 9a8f257081
commit f1c0e7ad7c

View File

@ -31,7 +31,7 @@ USER appuser
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD curl -f http://localhost:8080/api/v3/current || exit 1
CMD curl -f http://localhost:8080/health || exit 1
# Start uvicorn
ENV WEB_WORKERS=2