From 986cf24cb4287ab53741602e93dba97eb32d50a3 Mon Sep 17 00:00:00 2001 From: yuyang Date: Thu, 15 Dec 2016 18:19:03 +0800 Subject: [PATCH] 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 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.16.6