EMS-Royal commited on
Commit
d2f7981
·
verified ·
1 Parent(s): c50573b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -6,6 +6,9 @@ RUN pip install --upgrade pip
6
  COPY requirements.txt .
7
  RUN pip install -r requirements.txt
8
 
 
 
 
9
  # Copy app files
10
  COPY main.py .
11
 
 
6
  COPY requirements.txt .
7
  RUN pip install -r requirements.txt
8
 
9
+ # Optional: Create HF cache directory
10
+ RUN mkdir -p /tmp/hf-cache
11
+
12
  # Copy app files
13
  COPY main.py .
14