From 7756532b4ca1897338d973d4becb24812edba5ea Mon Sep 17 00:00:00 2001 From: Scott Baxter Date: Sun, 12 Oct 2025 22:59:42 -0500 Subject: [PATCH] fix: ECS container /health endpoint does not require API_KEY Bearer Token (#184) --- src/Dockerfile_ecs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile_ecs b/src/Dockerfile_ecs index eb315fb..e71acbf 100644 --- a/src/Dockerfile_ecs +++ b/src/Dockerfile_ecs @@ -17,6 +17,6 @@ USER appuser ENV PORT=8080 HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ - CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8080/api/v1/models').read()" + CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8080/health').read()" CMD ["sh", "-c", "uvicorn api.app:app --host 0.0.0.0 --port ${PORT}"]