From f1c0e7ad7c2314e7ebdf52ed513edca612e96366 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 10 Apr 2026 14:01:58 -0500 Subject: [PATCH] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3470ed1..2959351 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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