Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -2,11 +2,9 @@ FROM python:3.12-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
# unzip Stanza models
|
| 6 |
-
RUN unzip -d /app/stanza_resources /app/stanza_resources/default.zip
|
| 7 |
-
|
| 8 |
# Install dependencies
|
| 9 |
COPY requirements.txt .
|
|
|
|
| 10 |
RUN pip install --upgrade pip && \
|
| 11 |
pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
|
|
|
|
|
|
| 5 |
# Install dependencies
|
| 6 |
COPY requirements.txt .
|
| 7 |
+
|
| 8 |
RUN pip install --upgrade pip && \
|
| 9 |
pip install --no-cache-dir -r requirements.txt
|
| 10 |
|