Spaces:
Build error
Build error
Update Dockerfile
Browse files- 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
|
| 38 |
-
|
| 39 |
-
|
| 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 \
|