Summary
Add a Dockerfile and docker-compose example so anyone can run an LDP delegate with a single command — no Python setup required.
What to do
- Create
Dockerfile at repo root that packages the Python SDK delegate
- Create
examples/docker/ with:
docker-compose.yml running 3 delegates with different profiles (fast, balanced, deep)
demo_delegate.py — a simple delegate using LdpDelegate
README.md with setup instructions
- One command to start:
docker compose up
- One command to demo:
python examples/demo_smart_routing.py (against the running delegates)
Why this matters
Docker is the fastest path from "I saw this on GitHub" to "I'm running it." It removes all friction: no Python version issues, no dependency conflicts, no port management. A2A has Docker examples for their samples.
Acceptance criteria
Summary
Add a Dockerfile and docker-compose example so anyone can run an LDP delegate with a single command — no Python setup required.
What to do
Dockerfileat repo root that packages the Python SDK delegateexamples/docker/with:docker-compose.ymlrunning 3 delegates with different profiles (fast, balanced, deep)demo_delegate.py— a simple delegate usingLdpDelegateREADME.mdwith setup instructionsdocker compose uppython examples/demo_smart_routing.py(against the running delegates)Why this matters
Docker is the fastest path from "I saw this on GitHub" to "I'm running it." It removes all friction: no Python version issues, no dependency conflicts, no port management. A2A has Docker examples for their samples.
Acceptance criteria
docker build -t ldp-delegate .worksdocker compose upstarts 3 delegates with different identity profiles