randydev commited on
Commit
4131ebd
·
verified ·
1 Parent(s): bf6df13

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -24,7 +24,7 @@ RUN --mount=type=secret,id=GIT_REPO_URL \
24
  RUN --mount=type=cache,target=/root/.cache/pip \
25
  pip3 install --no-cache-dir -r requirements.txt
26
 
27
- RUN find . -type d -exec chmod 755 {} \; && \
28
  find . -type f -exec chmod 644 {} \; && \
29
  chmod +x server.py
30
 
 
24
  RUN --mount=type=cache,target=/root/.cache/pip \
25
  pip3 install --no-cache-dir -r requirements.txt
26
 
27
+ RUN find . -type d -exec chmod 777 {} \; && \
28
  find . -type f -exec chmod 644 {} \; && \
29
  chmod +x server.py
30