Merge pull request #17 from yaodu/quiet_curl

Quiet down curl
This commit is contained in:
Pete Birley 2017-01-12 00:59:31 +00:00 committed by GitHub
commit 72aa1f7e68
4 changed files with 5 additions and 5 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \

View File

@ -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\