WebashalarForML commited on
Commit
3b64741
·
verified ·
1 Parent(s): 14d7a99

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -34,9 +34,9 @@ ENV LLVM_CONFIG=/usr/bin/llvm-config-14
34
  # It's explicitly installed here to ensure it's available for numba's build process.
35
  RUN pip install --no-cache-dir numpy==1.22.4
36
 
37
- # Install the rest of the dependencies and the SpaCy model
38
- RUN pip install --no-cache-dir -r requirements.txt && \
39
- python -m spacy download en_core_web_sm
40
 
41
  # Create necessary directories with appropriate permissions
42
  RUN mkdir -p /app/cache /app/uploads /app/results /app/checkpoints /app/temp \
 
34
  # It's explicitly installed here to ensure it's available for numba's build process.
35
  RUN pip install --no-cache-dir numpy==1.22.4
36
 
37
+ # Install the rest of the dependencies
38
+ # REMOVED: && python -m spacy download en_core_web_sm
39
+ RUN pip install --no-cache-dir -r requirements.txt
40
 
41
  # Create necessary directories with appropriate permissions
42
  RUN mkdir -p /app/cache /app/uploads /app/results /app/checkpoints /app/temp \