diff --git a/dockerfiles/Dockerfile-centos b/dockerfiles/Dockerfile-centos index 956ce99..d8badbc 100644 --- a/dockerfiles/Dockerfile-centos +++ b/dockerfiles/Dockerfile-centos @@ -35,7 +35,7 @@ RUN set -x \ fi \ && mkdir /tmp/packages \ && tar xf /tmp/wheels.tar.gz -C /tmp/packages/ --strip-components=2 root/packages \ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ + && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ && python get-pip.py \ && rm get-pip.py \ && pip install virtualenv \ diff --git a/dockerfiles/Dockerfile-debian b/dockerfiles/Dockerfile-debian index a20f516..855f3e4 100644 --- a/dockerfiles/Dockerfile-debian +++ b/dockerfiles/Dockerfile-debian @@ -2,7 +2,7 @@ FROM debian:jessie ENV PATH=/virtualenv/bin:${PATH} \ PROJECT=keystone -ARG DOCKER_REPO=yaodu/requirements +ARG DOCKER_REPO=yaodu/openstack-requirements ARG DOCKER_TAG=latest ARG WHEELS ARG GIT_REPO=https://github.com/openstack/${PROJECT} @@ -34,7 +34,7 @@ RUN set -x \ fi \ && mkdir /tmp/packages \ && tar xf /tmp/wheels.tar.gz -C /tmp/packages/ --strip-components=2 root/packages \ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ + && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ && python get-pip.py \ && rm get-pip.py \ && pip install virtualenv \ diff --git a/dockerfiles/Dockerfile-ubuntu b/dockerfiles/Dockerfile-ubuntu index 496e5f1..e00b8d6 100644 --- a/dockerfiles/Dockerfile-ubuntu +++ b/dockerfiles/Dockerfile-ubuntu @@ -34,7 +34,7 @@ RUN set -x \ fi \ && mkdir /tmp/packages \ && tar xf /tmp/wheels.tar.gz -C /tmp/packages/ --strip-components=2 root/packages \ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ + && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ && python get-pip.py \ && rm get-pip.py \ && pip install virtualenv \ diff --git a/update.sh b/update.sh index 1391207..54c61f3 100755 --- a/update.sh +++ b/update.sh @@ -21,7 +21,7 @@ COMMON_INSTALL=$(cat <<'END_HEREDOC' fi \\\n\ && mkdir /tmp/packages \\\n\ && tar xf /tmp/wheels.tar.gz -C /tmp/packages/ --strip-components=2 root/packages \\\n\ - && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \\\n\ + && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \\\n\ && python get-pip.py \\\n\ && rm get-pip.py \\\n\ && pip install virtualenv \\\n\