Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/agentfs/examples/python.pip.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ COPY . .
# Pre-download any ML models or files the agent needs
# This ensures the container is ready to run immediately without downloading
# dependencies at runtime, which improves startup time and reliability
RUN python "{{.ProgramMain}}" download-files
RUN python -m livekit.agents download-files

# --- Production stage ---
# Build tools (gcc, g++, python3-dev) are not included in the final image
Expand Down
2 changes: 1 addition & 1 deletion pkg/agentfs/examples/python.uv.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ COPY . .
# Pre-download any ML models or files the agent needs
# This ensures the container is ready to run immediately without downloading
# dependencies at runtime, which improves startup time and reliability
RUN uv run "{{.ProgramMain}}" download-files
RUN uv run -m livekit.agents download-files

# --- Production stage ---
# Build tools (gcc, g++, python3-dev) are not included in the final image
Expand Down
Loading