Spaces:
Sleeping
Sleeping
Commit ·
0f38a08
1
Parent(s): 5e5fca8
Remove nltk downloads from dockerfile
Browse files- Dockerfile +0 -3
Dockerfile
CHANGED
|
@@ -14,9 +14,6 @@ RUN mkdir -p /code/cache/ && \
|
|
| 14 |
COPY requirements.txt .
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
|
| 17 |
-
# Downloading necessary NLTK data files.
|
| 18 |
-
RUN python -m nltk.downloader wordnet averaged_perceptron_tagger averaged_perceptron_tagger_eng omw-1.4 punkt
|
| 19 |
-
|
| 20 |
# Copying the application code into the container.
|
| 21 |
COPY . .
|
| 22 |
|
|
|
|
| 14 |
COPY requirements.txt .
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
|
|
|
|
|
|
|
|
|
|
| 17 |
# Copying the application code into the container.
|
| 18 |
COPY . .
|
| 19 |
|