Files
a2a/a2a_pack/cli/templates/Dockerfile.tmpl
robert 4ba732f685
All checks were successful
build / build (push) Successful in 1m15s
switch to a2acloud.io
2026-05-09 22:13:27 -03:00

15 lines
285 B
Cheetah

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={{ entrypoint }}
ENV PORT=8000
EXPOSE 8000
CMD a2a run --entrypoint "$A2A_ENTRYPOINT" --host 0.0.0.0 --port 8000