diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2016-12-05 08:53:25 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2016-12-05 08:53:25 +0000 |
commit | cefc4e95e9b410c12faea47994d5a2162fa90870 (patch) | |
tree | a65d6659d40286b06ad5252ef58efddd060bd2a8 /docker/Dockerfile | |
parent | ef6ef8ed8f81d950a2c3a1a6f95c1e83879a9310 (diff) |
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 <chenjiankun1@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |