Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 10 |
git \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
|
|
|
|
|
|
|
|
|
| 13 |
COPY requirements.txt ./
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|
|
|
|
| 10 |
git \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
+
RUN mkdir -p /app/huggingface_cache && \
|
| 14 |
+
chmod -R 777 /app/huggingface_cache
|
| 15 |
+
|
| 16 |
COPY requirements.txt ./
|
| 17 |
RUN pip3 install -r requirements.txt
|
| 18 |
|