Update Dockerfile
Browse files- 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
|
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 |
|