Skip to content

Commit ed59a76

Browse files
authored
Merge pull request #18 from CrafterKolyan/patch-2
Fix warnings when installing python packages
2 parents 648fc87 + 15ed38e commit ed59a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN mkdir -p /usr/share/man/man1 && \
1717
# Install app requirements first to avoid invalidating the cache
1818
COPY requirements.txt setup.py /app/
1919
WORKDIR /app
20-
RUN pip install --user -r requirements.txt && \
20+
RUN pip install --user -r requirements.txt --no-warn-script-location && \
2121
pip install --user entmax && \
2222
python -c "import nltk; nltk.download('stopwords'); nltk.download('punkt')"
2323

0 commit comments

Comments
 (0)