Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -9,9 +9,8 @@ WORKDIR /app
|
|
9 |
# Copy the application files
|
10 |
COPY . .
|
11 |
|
12 |
-
# Create a huggingface cache directory in /app and grant permissions
|
13 |
-
RUN mkdir -p /app/huggingface && chown -R appuser:appgroup /app/huggingface
|
14 |
|
|
|
15 |
# Set the environment variable to point to the app directory
|
16 |
ENV HF_HOME=/app/huggingface
|
17 |
|
|
|
9 |
# Copy the application files
|
10 |
COPY . .
|
11 |
|
|
|
|
|
12 |
|
13 |
+
RUN mkdir -p /app/huggingface && chmod 777 /app/huggingface
|
14 |
# Set the environment variable to point to the app directory
|
15 |
ENV HF_HOME=/app/huggingface
|
16 |
|