gabcares commited on
Commit
7a79aa2
·
verified ·
1 Parent(s): 5020ade

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -30,13 +30,13 @@ WORKDIR /client
30
  RUN mkdir -p /client/requests_cache/
31
 
32
  # Set the permissions
33
- RUN chmod 777 /client/requests_cache
34
 
35
  # Copy client frontend
36
  COPY . .
37
 
38
  # Set the permissions data directory
39
- RUN chmod 777 /client/data/
40
 
41
  # Expose app port
42
  EXPOSE 7860
 
30
  RUN mkdir -p /client/requests_cache/
31
 
32
  # Set the permissions
33
+ RUN chmod -R 777 /client/requests_cache
34
 
35
  # Copy client frontend
36
  COPY . .
37
 
38
  # Set the permissions data directory
39
+ RUN chmod -R 777 /client/data/
40
 
41
  # Expose app port
42
  EXPOSE 7860