dsmueller commited on
Commit
28651fd
1 Parent(s): 5e09d75

Update Dockerfile permissions for /usr/src/app

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ FROM python:3.11.5-bookworm
5
  RUN mkdir -p /usr/src/app
6
 
7
  # Change permissions for /usr/src/app to read/write/execute
8
- RUN chmod 777 /usr/src/app
9
 
10
  # Set the working directory in the container
11
  WORKDIR /usr/src/app
 
5
  RUN mkdir -p /usr/src/app
6
 
7
  # Change permissions for /usr/src/app to read/write/execute
8
+ RUN chmod -R 777 /usr/src/app
9
 
10
  # Set the working directory in the container
11
  WORKDIR /usr/src/app