Quiet down curl

This commit is contained in:
Sam Yaple 2017-01-11 23:15:59 +00:00
parent 9d46de72bc
commit cca36d883d
4 changed files with 4 additions and 5 deletions

View File

@ -32,7 +32,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 \
@ -48,7 +48,6 @@ RUN set -x \
&& pip install --no-index --no-compile --find-links /tmp/packages --constraint /tmp/packages/upper-constraints.txt python-memcached pymysql \
# Project specific command block end
&& yum history -y undo $(yum history list git | tail -2 | head -1 | awk '{ print $1}') \
&& rpm -e --nodeps centos-logos \
&& yum clean all \
&& rm -rf /tmp/* /root/.cache \
&& find / -type f \( -name "*.pyc" -o -name "pip" -o -name "easy_install" -o -name "wheel" \) -delete

View File

@ -33,7 +33,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

@ -33,7 +33,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\