Files
blog-openapi-agent/Dockerfile
a2a-platform 16d7a5fc4f
All checks were successful
build / build (push) Successful in 4s
deploy
2026-05-27 15:53:43 +00:00

16 lines
292 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:BlogOpenapiAgent
ENV PORT=8000
EXPOSE 8000
CMD a2a run --entrypoint "$A2A_ENTRYPOINT" --host 0.0.0.0 --port 8000