Bugfix: easy_install -U setuptools go wrong due to the setuptools version 73/25473/1
authorchenjiankun <chenjiankun1@huawei.com>
Mon, 5 Dec 2016 08:53:25 +0000 (08:53 +0000)
committerchenjiankun <chenjiankun1@huawei.com>
Mon, 5 Dec 2016 08:53:25 +0000 (08:53 +0000)
JIRA: YARDSTICK-445

Currently we do not set the setuptools version.
Now the setuptools version update to the 30.2.0, but when run
easy_install -U setuptools, it goes wrong.
So I set the setuptools version to 30.0.0

Change-Id: Id7ae232cce6d088355f71a7124688cb625d18457
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
docker/Dockerfile

index 3dd9401..23afef7 100644 (file)
@@ -50,7 +50,7 @@ RUN apt-get update && apt-get install -y \
     uwsgi-plugin-python \
     supervisor \
     python-setuptools && \
-    easy_install -U setuptools
+    easy_install -U setuptools==30.0.0
 
 RUN apt-get -y autoremove && \
     apt-get clean