Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -7,9 +7,9 @@ WORKDIR /app
|
|
7 |
# Copy the requirements file
|
8 |
COPY requirements.txt .
|
9 |
|
10 |
-
# Change permission
|
11 |
-
RUN mkdir -p /cache/
|
12 |
-
&& chmod -R 777 /cache/
|
13 |
|
14 |
# Set environment variables for Hugging Face and Matplotlib
|
15 |
ENV HF_HOME=/cache/huggingface
|
|
|
7 |
# Copy the requirements file
|
8 |
COPY requirements.txt .
|
9 |
|
10 |
+
# Change permission /cache/huggingface
|
11 |
+
RUN mkdir -p /cache/matplotlib \
|
12 |
+
&& chmod -R 777 /cache/matplotlib
|
13 |
|
14 |
# Set environment variables for Hugging Face and Matplotlib
|
15 |
ENV HF_HOME=/cache/huggingface
|