ganna217 commited on
Commit
5a2ce3f
·
1 Parent(s): b6ac895

Fix cache directory permission issue with explicit cache_dir

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -4,12 +4,20 @@ FROM python:3.9-slim
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
 
 
 
 
 
7
  # Copy all project files to the container
8
  COPY . /app
9
 
10
  # Install the required Python packages
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
 
 
13
  # Expose the port that FastAPI will run on
14
  EXPOSE 7860
15
 
 
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
7
+ # Set environment variables for cache
8
+ ENV HF_HOME=/tmp/hf_cache
9
+ ENV HUGGINGFACE_HUB_CACHE=/tmp/hf_cache
10
+ ENV TRANSFORMERS_CACHE=/tmp/hf_cache
11
+
12
  # Copy all project files to the container
13
  COPY . /app
14
 
15
  # Install the required Python packages
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
18
+ # Create the cache directory
19
+ RUN mkdir -p /tmp/hf_cache
20
+
21
  # Expose the port that FastAPI will run on
22
  EXPOSE 7860
23