aboutsummaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorchenjiankun <chenjiankun1@huawei.com>2016-12-05 08:53:25 +0000
committerchenjiankun <chenjiankun1@huawei.com>2016-12-05 08:53:25 +0000
commitcefc4e95e9b410c12faea47994d5a2162fa90870 (patch)
treea65d6659d40286b06ad5252ef58efddd060bd2a8 /docker/Dockerfile
parentef6ef8ed8f81d950a2c3a1a6f95c1e83879a9310 (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/Dockerfile2
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