Update Dockerfile
Browse files- 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 |
|