Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@ WORKDIR /app
|
|
| 8 |
ENV HF_HOME /app/.cache/huggingface
|
| 9 |
|
| 10 |
# Create the cache directory
|
| 11 |
-
RUN mkdir -p /app/.cache/huggingface
|
| 12 |
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
COPY . /app
|
|
|
|
| 8 |
ENV HF_HOME /app/.cache/huggingface
|
| 9 |
|
| 10 |
# Create the cache directory
|
| 11 |
+
RUN mkdir -p /app/.cache/huggingface && chmod -R 777 /app/huggingface_cache
|
| 12 |
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
COPY . /app
|