Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -31,6 +31,9 @@ COPY ./requirements.txt /app/requirements.txt
|
|
| 31 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 32 |
pip install --no-cache-dir -r /app/requirements.txt
|
| 33 |
|
|
|
|
|
|
|
|
|
|
| 34 |
COPY . /app
|
| 35 |
|
| 36 |
# Change permissions for the app directory
|
|
|
|
| 31 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 32 |
pip install --no-cache-dir -r /app/requirements.txt
|
| 33 |
|
| 34 |
+
# Download NLTK data
|
| 35 |
+
RUN python -m nltk.downloader punkt
|
| 36 |
+
|
| 37 |
COPY . /app
|
| 38 |
|
| 39 |
# Change permissions for the app directory
|