Trisha Tomy commited on
Commit
5ddc44b
·
1 Parent(s): 110100c

permission denied fix

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -31,8 +31,8 @@ ENV PYTHONPATH=/app/proxy-lite-demo-v2/src:$PYTHONPATH
31
  # Create the directory proxy-lite's recorder insists on writing to
32
  # and grant full permissions. This addresses the PermissionError.
33
  # This line creates the directory *directly* under /app, which is now the correct path
34
- RUN mkdir -p /app/local_trajectories \
35
- && chmod -R 777 /app/local_trajectories
36
  # --- END: Directory permission workaround ---
37
 
38
  # Upgrade pip, setuptools, and wheel for a robust Python build environment.
 
31
  # Create the directory proxy-lite's recorder insists on writing to
32
  # and grant full permissions. This addresses the PermissionError.
33
  # This line creates the directory *directly* under /app, which is now the correct path
34
+ RUN mkdir -p /app/proxy-lite-demo-v2/local_trajectories \
35
+ && chmod -R 777 /app/proxy-lite-demo-v2/local_trajectories
36
  # --- END: Directory permission workaround ---
37
 
38
  # Upgrade pip, setuptools, and wheel for a robust Python build environment.