Spaces:
Runtime error
Runtime error
update docker file
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -16,7 +16,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 16 |
# Create directories for NLTK and Hugging Face cache data
|
| 17 |
RUN mkdir -p /app/nltk_data /app/.cache/huggingface /app/.huggingface_cache
|
| 18 |
|
| 19 |
-
# Download NLTK data (punkt)
|
| 20 |
RUN python -m nltk.downloader -d /app/nltk_data punkt wordnet
|
| 21 |
|
| 22 |
# Set environment variables
|
|
|
|
| 16 |
# Create directories for NLTK and Hugging Face cache data
|
| 17 |
RUN mkdir -p /app/nltk_data /app/.cache/huggingface /app/.huggingface_cache
|
| 18 |
|
| 19 |
+
# Download NLTK data (punkt and wordnet)
|
| 20 |
RUN python -m nltk.downloader -d /app/nltk_data punkt wordnet
|
| 21 |
|
| 22 |
# Set environment variables
|