Skip to content
Merged
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
3 changes: 3 additions & 0 deletions pkg/agentfs/examples/python.uv.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ COPY . .
# This ensures the application can read/write files as needed
RUN chown -R appuser:appuser /app

# Set working directory
WORKDIR /app
Copy link
Member

@rektdeckard rektdeckard Mar 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do this on line 39 and don't seem to move anywhere else in between...not sure what this mitigates?

But also: #789
This is much faster than recursive chown


# Switch to the non-privileged user for all subsequent operations
# This improves security by not running as root
USER appuser
Expand Down
Loading