From: chenjiankun Date: Mon, 5 Dec 2016 08:53:25 +0000 (+0000) Subject: Bugfix: easy_install -U setuptools go wrong due to the setuptools version X-Git-Tag: danube.1.0~180 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=cefc4e95e9b410c12faea47994d5a2162fa90870;p=yardstick.git Bugfix: easy_install -U setuptools go wrong due to the setuptools version 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 --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 3dd94019a..23afef74e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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