mirror of
https://github.com/katanemo/plano.git
synced 2026-05-09 07:42:43 +02:00
Update docs to Plano (#639)
This commit is contained in:
parent
15fbb6c3af
commit
e224cba3e3
139 changed files with 4407 additions and 24735 deletions
21
demos/use_cases/travel_agents/Dockerfile
Normal file
21
demos/use_cases/travel_agents/Dockerfile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install uv for faster dependency management
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
|
||||
|
||||
# Copy dependency files
|
||||
COPY pyproject.toml README.md ./
|
||||
|
||||
# Install dependencies (without lock file to resolve fresh)
|
||||
RUN uv sync --no-dev
|
||||
|
||||
# Copy application code
|
||||
COPY src/ ./src/
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
# Default command (will be overridden in docker-compose)
|
||||
CMD ["uv", "run", "python", "src/travel_agents/weather_agent.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue