From 520a5a7d9603fef5acc2078fd7ae948e0314fda9 Mon Sep 17 00:00:00 2001 From: megaproxy Date: Thu, 23 Apr 2026 22:32:49 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20demo=20healthcheck=20=E2=80=94=20use=20py?= =?UTF-8?q?thon3=20urllib=20instead=20of=20curl=20(not=20in=20image)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- demo/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/docker-compose.yml b/demo/docker-compose.yml index 6912bd3..4488f6f 100644 --- a/demo/docker-compose.yml +++ b/demo/docker-compose.yml @@ -32,7 +32,7 @@ services: security_opt: - no-new-privileges:true healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000/health"] + test: ["CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"] interval: 30s timeout: 10s retries: 3