initial: deepagents-driven agent generator + deployer
All checks were successful
build / build (push) Successful in 31s

This commit is contained in:
robert
2026-05-11 21:26:52 -03:00
commit 87eedb47a4
13 changed files with 883 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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