Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 16 |
COPY requirements.txt .
|
| 17 |
RUN pip3 install -r requirements.txt
|
| 18 |
|
|
|
|
|
|
|
| 19 |
# Copia tutto il codice dell'applicazione
|
| 20 |
COPY . .
|
| 21 |
|
|
|
|
| 16 |
COPY requirements.txt .
|
| 17 |
RUN pip3 install -r requirements.txt
|
| 18 |
|
| 19 |
+
RUN python -m spacy download it_core_news_sm
|
| 20 |
+
|
| 21 |
# Copia tutto il codice dell'applicazione
|
| 22 |
COPY . .
|
| 23 |
|