From e01ce22d1ee30447e4d2507d3cc041216ba95fe3 Mon Sep 17 00:00:00 2001 From: Do Siki Date: Mon, 17 Aug 2026 16:53:21 +0200 Subject: [PATCH] fix: use IPv4 staging healthcheck --- proto/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/Dockerfile b/proto/Dockerfile index 23b8d84..9708141 100755 --- a/proto/Dockerfile +++ b/proto/Dockerfile @@ -46,7 +46,7 @@ EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=5s --retries=5 \ - CMD wget -qO- http://localhost:3000/api/health || exit 1 + CMD wget -qO- http://127.0.0.1:3000/api/health || exit 1 # Start the application CMD ["node", "server.js"]