Fix download of files using up-to-date "curl" instead of "wget"

In few images, curl is only tool that able to download from https
source requiring TLS 1.2
This commit is contained in:
Jean-Christophe Fillion-Robin
2018-03-29 15:07:54 -04:00
committed by Francois Budin
parent 53990df0b8
commit 53d98cf4ff
7 changed files with 11 additions and 11 deletions

View File

@ -31,7 +31,7 @@ RUN \
RUN if [ -e /opt/python/cp35-cp35m/bin/python ]; then \
: nothing to do here since it is updated by manylinux-common/install-python-packages.sh ; \
else \
wget https://bootstrap.pypa.io/get-pip.py && \
curl -# -LO https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py --ignore-installed && \
rm get-pip.py || exit 1; \
fi