Kaballas commited on
Commit
5e08e2d
·
1 Parent(s): d7da6ee
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -19,6 +19,9 @@ WORKDIR /app
19
  # Copy project files
20
  COPY . /app
21
 
 
 
 
22
  # Ensure our src/ is on the Python path so our local code is used
23
  ENV PYTHONPATH=/app/src
24
 
 
19
  # Copy project files
20
  COPY . /app
21
 
22
+ # Fix permissions so the unprivileged user can write to /app
23
+ RUN chown -R user:user /app
24
+
25
  # Ensure our src/ is on the Python path so our local code is used
26
  ENV PYTHONPATH=/app/src
27