Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
# Install dependencies
|
| 4 |
RUN pip install --upgrade pip
|
| 5 |
COPY requirements.txt .
|
|
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
|
| 3 |
+
ENV HF_HOME=/tmp/hf_cache
|
| 4 |
+
ENV TRANSFORMERS_CACHE=/tmp/hf_cache
|
| 5 |
+
|
| 6 |
# Install dependencies
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
COPY requirements.txt .
|