download en_core_web_sm
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
# Install spaCy model
|
10 |
-
|
11 |
|
12 |
COPY . .
|
13 |
|
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
# Install spaCy model
|
10 |
+
RUN python -m spacy download en_core_web_sm
|
11 |
|
12 |
COPY . .
|
13 |
|