|
1 | | -FROM ubuntu:20.04 |
| 1 | +FROM ubuntu:22.04 |
2 | 2 | ENV DEBIAN_FRONTEND noninteractive |
3 | 3 |
|
4 | 4 | LABEL org.opencontainers.image.title "FollowTheMoney File Ingestors" |
@@ -129,21 +129,23 @@ RUN pip3 install --no-cache-dir --prefer-binary --upgrade setuptools wheel |
129 | 129 | RUN pip3 install --no-cache-dir --no-binary "tesserocr" -r /tmp/requirements.txt |
130 | 130 |
|
131 | 131 | # Install spaCy models |
132 | | -RUN python3 -m spacy download en_core_web_sm \ |
133 | | - && python3 -m spacy download de_core_news_sm \ |
134 | | - && python3 -m spacy download fr_core_news_sm \ |
135 | | - && python3 -m spacy download es_core_news_sm |
136 | | -RUN python3 -m spacy download ru_core_news_sm \ |
137 | | - && python3 -m spacy download pt_core_news_sm \ |
138 | | - && python3 -m spacy download ro_core_news_sm \ |
139 | | - && python3 -m spacy download mk_core_news_sm |
140 | | -RUN python3 -m spacy download el_core_news_sm \ |
141 | | - && python3 -m spacy download pl_core_news_sm \ |
142 | | - && python3 -m spacy download it_core_news_sm \ |
143 | | - && python3 -m spacy download lt_core_news_sm \ |
144 | | - && python3 -m spacy download nl_core_news_sm \ |
145 | | - && python3 -m spacy download nb_core_news_sm \ |
146 | | - && python3 -m spacy download da_core_news_sm |
| 132 | +RUN python3 -m spacy download en_core_web_sm |
| 133 | +RUN python3 -m spacy download es_core_news_lg |
| 134 | +RUN python3 -m spacy download de_core_news_sm |
| 135 | +RUN python3 -m spacy download fr_core_news_sm |
| 136 | +RUN python3 -m spacy download da_core_news_sm |
| 137 | +RUN python3 -m spacy download uk_core_news_sm |
| 138 | +RUN python3 -m spacy download ru_core_news_sm |
| 139 | +RUN python3 -m spacy download pt_core_news_sm |
| 140 | +RUN python3 -m spacy download ro_core_news_sm |
| 141 | +RUN python3 -m spacy download mk_core_news_sm |
| 142 | +RUN python3 -m spacy download el_core_news_sm |
| 143 | +RUN python3 -m spacy download pl_core_news_sm |
| 144 | +RUN python3 -m spacy download it_core_news_sm |
| 145 | +RUN python3 -m spacy download lt_core_news_sm |
| 146 | +RUN python3 -m spacy download nl_core_news_sm |
| 147 | +RUN python3 -m spacy download nb_core_news_sm |
| 148 | +RUN python3 -m spacy download sv_core_news_sm |
147 | 149 | # RUN python3 -m spacy download zh_core_web_sm |
148 | 150 |
|
149 | 151 | COPY . /ingestors |
|
0 commit comments