Synced repo using 'sync_with_huggingface' Github Action
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -20,10 +20,7 @@ WORKDIR /app
|
|
20 |
RUN xargs apt-get -y install < packages.txt
|
21 |
|
22 |
# allow permissions
|
23 |
-
RUN chmod -R 777 /root
|
24 |
-
|
25 |
-
# allow permissions workdir
|
26 |
-
RUN chmod -R 777 /app
|
27 |
|
28 |
# Install the Python dependencies
|
29 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
20 |
RUN xargs apt-get -y install < packages.txt
|
21 |
|
22 |
# allow permissions
|
23 |
+
RUN chmod -R 777 . && chmod -R 777 /root
|
|
|
|
|
|
|
24 |
|
25 |
# Install the Python dependencies
|
26 |
RUN pip install --no-cache-dir -r requirements.txt
|