From 15289083c6e61205d967b2377d92ffe500cda381 Mon Sep 17 00:00:00 2001 From: Tudor Date: Tue, 24 Mar 2026 11:58:28 +0000 Subject: [PATCH] fix(integrator): use python urllib for healthcheck instead of curl python:3.12-slim doesn't include curl; urllib is part of the stdlib. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index de40bd5..a5fca3b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -131,7 +131,7 @@ services: - schoolcompare-network restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8001/health"] + test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8001/health')"] interval: 30s timeout: 10s retries: 3