From 9d31f1d8831cd95a1212fde92d9bdb581c6f364c Mon Sep 17 00:00:00 2001 From: Will Mooreston Date: Wed, 17 Jun 2026 16:47:16 -0700 Subject: [PATCH] Fix Docker health check endpoint for Spring Boot 4 /_/health relied on spring-boot-actuator, which is not bundled in Spring Boot 4 jars. Switch to /admin-healthcheck.api, a LabKey-native endpoint that returns {"healthy":true} without authentication. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 241f067..ecfc7ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -234,7 +234,7 @@ ENV HEALTHCHECK_INTERVAL="6s" \ HEALTHCHECK_SECURITY_FLAG="-k" \ HEALTHCHECK_EXTRA_FLAGS="-s" \ \ - HEALTHCHECK_ENDPOINT="/_/health" + HEALTHCHECK_ENDPOINT="/admin-healthcheck.api" HEALTHCHECK \ --interval=5s \