gavinzli commited on
Commit
ea7d339
·
1 Parent(s): 3d29524

Set permissions for the /app directory in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -8,6 +8,7 @@ COPY . .
8
  WORKDIR /app
9
 
10
  # Create a cache directory and set permissions
 
11
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
12
  RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
13
 
 
8
  WORKDIR /app
9
 
10
  # Create a cache directory and set permissions
11
+ RUN chmod -R 777 /app
12
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
13
  RUN mkdir -p /app/nltk_data && chmod -R 777 /app/nltk_data
14