From 42850554d285a16bd77111a3aca357c7c9464f70 Mon Sep 17 00:00:00 2001 From: MeikWimm <110353873+MeikWimm@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:21:41 +0200 Subject: [PATCH] Update Dockerfile to download spacy model --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c28dcab..6df7dd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN pip3 uninstall -y tira \ && pip3 install tira RUN pip3 install spacy +RUN python3 -m spacy download en_core_web_md ADD . /app