Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion a2a/docs/08-production-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Loading