From 558a585d5329ea1c8aab7d91055aa3685334fa23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kol=C3=A1rik?= Date: Sat, 22 Jun 2024 22:32:17 +0200 Subject: [PATCH] fix: prefer IPv4 connectivity when available --- bin/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index 692c773..5bfa77c 100755 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -3,7 +3,7 @@ update-ca-certificates function run_probe() { - node /app/dist/index.js + node --dns-result-order=ipv4first /app/dist/index.js return }