QuantumLearner commited on
Commit
d32a9cd
·
verified ·
1 Parent(s): 73d0f77

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -31,6 +31,9 @@ COPY ./requirements.txt /app/requirements.txt
31
  RUN pip install --no-cache-dir --upgrade pip && \
32
  pip install --no-cache-dir -r /app/requirements.txt
33
 
 
 
 
34
  COPY . /app
35
 
36
  # Change permissions for the app directory
 
31
  RUN pip install --no-cache-dir --upgrade pip && \
32
  pip install --no-cache-dir -r /app/requirements.txt
33
 
34
+ # Download NLTK data
35
+ RUN python -m nltk.downloader punkt
36
+
37
  COPY . /app
38
 
39
  # Change permissions for the app directory