Skip to content

Commit

Permalink
install packages systemwide
Browse files Browse the repository at this point in the history
  • Loading branch information
FloSch62 committed Jan 12, 2025
1 parent cdbdb86 commit 1669ea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ COPY cli/ ./cli/
# Install dependencies using uv
RUN --mount=type=cache,target=/root/.cache/pip \
--mount=type=cache,target=/root/.cache/uv \
uv pip sync --system pyproject.toml
uv pip install --system -r pyproject.toml

# Make the entrypoint script executable
RUN chmod +x /app/entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ else
fi

# Execute the determined script with all passed arguments
uv run python -u "/app/${script_name}" "$@"
python "/app/${script_name}" "$@"

0 comments on commit 1669ea3

Please sign in to comment.