From d59ffa5201c1568405d2d114254a82d2a68f7cfe Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Mon, 29 Sep 2025 02:00:22 +0300 Subject: [PATCH] Fix health check start period in Dockerfile for improved reliability --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 03795c4..fadd29a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ ENV APP_VERSION=${APP_VERSION} EXPOSE 80 # Health check -HEALTHCHECK --interval=120s --timeout=10s --start-period=60s --retries=3 \ +HEALTHCHECK --interval=120s --timeout=10s --start-period=15s --retries=3 \ CMD curl -f http://localhost/health || exit 1 # Start nginx