Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y \
|
|
10 |
curl \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
|
|
|
|
|
|
13 |
# Copy requirements and install
|
14 |
COPY app/requirements.txt .
|
15 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
10 |
curl \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
+
|
14 |
+
RUN mkdir -p app/models/.cache/huggingface
|
15 |
+
|
16 |
# Copy requirements and install
|
17 |
COPY app/requirements.txt .
|
18 |
RUN pip install --no-cache-dir -r requirements.txt
|