From c844b1319b1e04370bd4e487d57e1f0e4023133f Mon Sep 17 00:00:00 2001 From: Steve Yoon Date: Fri, 13 Mar 2026 14:02:03 -0400 Subject: [PATCH] fix dockerfile for uv --- pkg/agentfs/examples/python.uv.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/agentfs/examples/python.uv.Dockerfile b/pkg/agentfs/examples/python.uv.Dockerfile index 19ec7374..a286ee18 100644 --- a/pkg/agentfs/examples/python.uv.Dockerfile +++ b/pkg/agentfs/examples/python.uv.Dockerfile @@ -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 + # Switch to the non-privileged user for all subsequent operations # This improves security by not running as root USER appuser