krishnachoudhary-hclguvi commited on
Commit
3538a1e
·
unverified ·
1 Parent(s): e2cf7f5

Download nltk wordnet corpus during build

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -26,6 +26,7 @@ RUN pip install --no-cache-dir -r requirements.txt
26
 
27
  # Download spaCy model during build to improve runtime performance
28
  RUN python -m spacy download en_core_web_sm
 
29
 
30
  # Create uploads directory
31
  RUN mkdir -p /app/uploads
 
26
 
27
  # Download spaCy model during build to improve runtime performance
28
  RUN python -m spacy download en_core_web_sm
29
+ RUN python -m nltk.downloader wordnet
30
 
31
  # Create uploads directory
32
  RUN mkdir -p /app/uploads