# Container image for the agentic-adk-multi x cloud-run cell.
# Cloud Run listens on $PORT (default 8080). Uvicorn binds 0.0.0.0 explicitly
# so the container is reachable from the runtime's front-end proxy.

FROM python:3.11-slim

WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

ENV PORT=8080
EXPOSE 8080

CMD ["sh", "-c", "uvicorn server:app --host 0.0.0.0 --port ${PORT}"]
