rabiyulfahim commited on
Commit
7edaf74
·
verified ·
1 Parent(s): 515c9d3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -15,9 +15,9 @@ RUN pip install --no-cache-dir -r requirements.txt
15
  COPY . .
16
 
17
  # Hugging Face cache directory
18
- ENV HF_HOME=/app/.cache/huggingface
19
- ENV TRANSFORMERS_CACHE=/app/.cache/huggingface
20
- RUN mkdir -p /app/.cache/huggingface
21
 
22
  # Expose FastAPI port
23
  EXPOSE 7860
 
15
  COPY . .
16
 
17
  # Hugging Face cache directory
18
+ ENV HF_HOME=/tmp/huggingface
19
+ ENV TRANSFORMERS_CACHE=/tmp/huggingface
20
+ RUN mkdir -p /tmp/huggingface
21
 
22
  # Expose FastAPI port
23
  EXPOSE 7860