Fix Stanford Core NLP - Update Docker file

The url for the ``stanford-corenlp-full-2018-10-05`` has changed.

@See https://github.com/microsoft/rat-sql/issues/54
This commit is contained in:
SoyOscarRH-Microsoft 2021-06-17 19:04:04 -05:00 коммит произвёл GitHub
Родитель 727cf7055c
Коммит 144b28ee84
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -27,7 +27,7 @@ RUN python -c "from transformers import BertModel; BertModel.from_pretrained('be
# Download & cache StanfordNLP
RUN mkdir -p /app/third_party && \
cd /app/third_party && \
curl https://nlp.stanford.edu/software/stanford-corenlp-full-2018-10-05.zip | jar xv
curl https://download.cs.stanford.edu/nlp/software/stanford-corenlp-full-2018-10-05.zip | jar xv
# Now copy the rest of the app
COPY . /app/