20 lines
447 B
Docker
20 lines
447 B
Docker
# Dockerfile for OSVauco ADK agent — Cloud Run deployment
|
|
# Note: `adk deploy cloud_run` manages this automatically.
|
|
# Use this Dockerfile only for manual `gcloud run deploy --source .` deploys.
|
|
|
|
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV PORT=8080
|
|
ENV GOOGLE_GENAI_USE_VERTEXAI=True
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["adk", "web", "--host", "0.0.0.0", "--port", "8080", "."]
|