We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76369e0 commit 433362aCopy full SHA for 433362a
Dockerfile
@@ -17,6 +17,9 @@ COPY requirements.txt /app
17
18
RUN pip install -r requirements.txt
19
20
+# Install spacy model that can perform NLP tasks like parts of speech tagging, named entity recognition and dependency parsing
21
+RUN python -m spacy download en_core_web_sm
22
+
23
COPY start.sh /app/start.sh
24
RUN chmod +x /app/start.sh
25
0 commit comments