Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ COPY . /app
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Create a directory for NLTK data
|
14 |
-
RUN mkdir -p /nltk_data && chmod -R 755 /nltk_data
|
15 |
|
16 |
# Download NLTK data
|
17 |
RUN python -m nltk.downloader stopwords punkt
|
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Create a directory for NLTK data
|
14 |
+
RUN mkdir -p app/nltk_data && chmod -R 755 app/nltk_data
|
15 |
|
16 |
# Download NLTK data
|
17 |
RUN python -m nltk.downloader stopwords punkt
|