Spaces:
Runtime error
Runtime error
aus10powell
commited on
Commit
•
6cbd99b
1
Parent(s):
840c525
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -6,6 +6,9 @@ WORKDIR /code
|
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
|
8 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
|
|
|
|
9 |
|
10 |
RUN python3 -m nltk.downloader punkt
|
11 |
RUN python3 -m spacy download en_core_web_sm
|
|
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
|
8 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
9 |
+
RUN pip install nltk
|
10 |
+
# Download NLTK resources
|
11 |
+
RUN python -m nltk.downloader punkt
|
12 |
|
13 |
RUN python3 -m nltk.downloader punkt
|
14 |
RUN python3 -m spacy download en_core_web_sm
|