Force reinstall pip to fix warning

This commit is contained in:
Filip Š 2020-07-13 23:17:45 +02:00
parent caee5e0f9f
commit 86f5a7d9e0

View File

@ -1087,7 +1087,7 @@ ARG INSTALL_PYTHON3=false
RUN if [ ${INSTALL_PYTHON3} = true ]; then \
apt-get -y install python3 python3-pip python3-dev build-essential \
&& python3 -m pip install --upgrade pip \
&& python3 -m pip install --upgrade --force-reinstall pip \
&& python3 -m pip install --upgrade virtualenv \
;fi