From 71312297be2539145812bc4f88f35667c89e9efa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Thu, 15 Jan 2026 09:42:09 +0100 Subject: [PATCH] Fix invalid port in healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6bb9351..b200ba1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,4 @@ HEALTHCHECK \ --timeout=5s \ --start-period=3s \ --retries=3 \ - CMD ["wget", "http://localhost/health", "-O", "/dev/null", "-q"] + CMD ["wget", "http://localhost:3000/health", "-O", "/dev/null", "-q"]