fixed the nltk download in the docker files

This commit is contained in:
John Lancaster
2023-05-25 23:36:17 -05:00
parent 3933980106
commit 6d8344c59e
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ RUN apt update && apt install -y libblas-dev liblapack-dev
COPY --from=build-image /root/venv /root/venv
ENV PATH="/root/venv/bin:$PATH"
RUN python -m nltk.downloader words
RUN python -m nltk.downloader words punkt averaged_perceptron_tagger
WORKDIR /usr/app
CMD [ "python", "./src/main.py" ]