diff options
author | yuyang <Gabriel.yuyang@huawei.com> | 2016-12-15 18:19:03 +0800 |
---|---|---|
committer | yuyang <Gabriel.yuyang@huawei.com> | 2016-12-15 18:20:42 +0800 |
commit | 986cf24cb4287ab53741602e93dba97eb32d50a3 (patch) | |
tree | 441176e6f25916d5c81cafe87ae8de8de0e75eb7 | |
parent | 32fc31642ff993fe93e5033cba9f97a633a0a340 (diff) |
bugfix:fix the version support problem of setuptools
JIRA: BOTTLENECK-108
Due the version problem, docker build job fails each time.
Change-Id: I179ec56295f344fbd14ffeb8650c8d4625507379
Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 6288cf85..03af056b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y \ python-dev \ python-pip \ python-setuptools && \ - easy_install -U setuptools + easy_install -U setuptools==30.0.0 RUN apt-get -y autoremove && \ apt-get clean |