From: yuyang Date: Thu, 15 Dec 2016 10:19:03 +0000 (+0800) Subject: bugfix:fix the version support problem of setuptools X-Git-Tag: danube.1.RC1~39 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=commitdiff_plain;h=986cf24cb4287ab53741602e93dba97eb32d50a3 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 --- 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