From 22e99b40afdcb8550a2ca642bc9c1e2bd3063c33 Mon Sep 17 00:00:00 2001 From: FanouZeng-TT <18280587072@163.com> Date: Tue, 25 Aug 2026 09:34:47 +0800 Subject: [PATCH] docs: use Exec-form healthcheck in sample Dockerfile --- a2a/docs/08-production-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a2a/docs/08-production-notes.md b/a2a/docs/08-production-notes.md index d00e21ba..53fc5a44 100644 --- a/a2a/docs/08-production-notes.md +++ b/a2a/docs/08-production-notes.md @@ -217,7 +217,7 @@ EXPOSE 10999 # Health check HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \ - CMD curl -f http://localhost:10999/health || exit 1 + CMD ["python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:10999/health')"] # Run CMD ["uv", "run", "business_agent"]