Fix the get-pip.py path

Change-Id: Ica14e6bfcdf82b35fbbb557c24a82041284d4631
This commit is contained in:
caoyuan 2018-07-06 00:09:09 +08:00
parent 79128a94fc
commit 32934d8826

View File

@ -24,8 +24,8 @@ RUN set -ex ;\
"Development Tools" ;\ "Development Tools" ;\
yum clean all ;\ yum clean all ;\
rm -rf /var/cache/yum ;\ rm -rf /var/cache/yum ;\
curl https://bootstrap.pypa.io/get-pip.py -o /tmpget-pip.py ;\ curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py ;\
python /tmpget-pip.py ;\ python /tmp/get-pip.py ;\
rm -f /tmp/get-pip.py ;\ rm -f /tmp/get-pip.py ;\
TMP_DIR=$(mktemp -d) ;\ TMP_DIR=$(mktemp -d) ;\
git clone https://github.com/openstack/virtualbmc ${TMP_DIR} ;\ git clone https://github.com/openstack/virtualbmc ${TMP_DIR} ;\