This repository has been archived on 2026-06-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
agent-builder/Dockerfile
robert 87eedb47a4
All checks were successful
build / build (push) Successful in 31s
initial: deepagents-driven agent generator + deployer
2026-05-11 21:26:52 -03:00

15 lines
287 B
Docker

FROM registry.a2acloud.io/a2a/a2a-pack-base:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV A2A_ENTRYPOINT=agent:AgentBuilder
ENV PORT=8000
EXPOSE 8000
CMD a2a run --entrypoint "$A2A_ENTRYPOINT" --host 0.0.0.0 --port 8000