sohamnk commited on
Commit
0fa63bc
·
verified ·
1 Parent(s): 4f9c351
Files changed (1) hide show
  1. Dockerfile +0 -7
Dockerfile CHANGED
@@ -26,13 +26,6 @@ COPY ./requirements.txt /code/requirements.txt
26
  # Install the Python packages
27
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
28
 
29
- # --- ✅ CHANGES ARE HERE ---
30
- # Download the spaCy and NLTK data during the build process
31
- RUN python -m spacy download en_core_web_sm
32
- RUN mkdir -p /tmp/nltk_data && \
33
- python -c "import nltk; nltk.download('wordnet', download_dir='/tmp/nltk_data')"
34
-
35
-
36
  # Copy the rest of your application files into the container
37
  COPY . /code/
38
 
 
26
  # Install the Python packages
27
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
28
 
 
 
 
 
 
 
 
29
  # Copy the rest of your application files into the container
30
  COPY . /code/
31