Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -38,8 +38,7 @@ RUN pip install --no-cache-dir numpy==1.22.4
|
|
38 |
# Using --break-system-packages might be needed if pip complains about global installs,
|
39 |
# though --no-cache-dir is good for image size.
|
40 |
# Adding spacy download here to keep build clean
|
41 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
42 |
-
python -m spacy download en_core_web_sm
|
43 |
|
44 |
# Create necessary directories with appropriate permissions
|
45 |
RUN mkdir -p /app/cache /app/uploads /app/results /app/checkpoints /app/temp \
|
|
|
38 |
# Using --break-system-packages might be needed if pip complains about global installs,
|
39 |
# though --no-cache-dir is good for image size.
|
40 |
# Adding spacy download here to keep build clean
|
41 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
42 |
|
43 |
# Create necessary directories with appropriate permissions
|
44 |
RUN mkdir -p /app/cache /app/uploads /app/results /app/checkpoints /app/temp \
|