yashoda74679 commited on
Commit
055c3d7
·
verified ·
1 Parent(s): 0259f97

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ WORKDIR /app
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
- # Create writable cache directory
9
- RUN mkdir -p /app/hf_cache
10
 
11
  COPY app.py .
12
 
 
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
+ # Create a writable Hugging Face cache directory
9
+ RUN mkdir -p /app/hf_cache && chmod -R 777 /app/hf_cache
10
 
11
  COPY app.py .
12