Remove spacy download step; use pip-installed model
Browse files- Dockerfile +0 -3
Dockerfile
CHANGED
|
@@ -17,9 +17,6 @@ RUN pip install --upgrade pip==24.0
|
|
| 17 |
COPY requirements.txt .
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
|
| 20 |
-
# Download spaCy model
|
| 21 |
-
RUN python -m spacy download en_core_web_sm
|
| 22 |
-
|
| 23 |
COPY . .
|
| 24 |
|
| 25 |
EXPOSE 8501
|
|
|
|
| 17 |
COPY requirements.txt .
|
| 18 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
|
|
|
|
|
|
|
|
|
|
| 20 |
COPY . .
|
| 21 |
|
| 22 |
EXPOSE 8501
|