Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -5,10 +5,10 @@ FROM python:3.10.9
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Set a writable directory for Hugging Face cache
|
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
|
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Set a writable directory for Hugging Face cache
|
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
|