summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2017-10-22 23:37:50 -0400
committerLeo wang <grakiss.wanglei@huawei.com>2017-10-23 07:07:25 +0000
commit78257613e55d1af14a5ce73f32859de0c9054bbf (patch)
treeaad6d60753bf83f7add5b33e09fe0252afd59239
parent4e37ee139ef18890dcfd42bea84974ea10535793 (diff)
Bugfix: build docker image failed
1. When build Dovetail docker image, the job failed. 2. https://build.opnfv.org/ci/view/dovetail/job/dovetail-docker-build-push-master/279/console 3. That's because the setuptools version is old. 4. It needs to upgrade setuptools in the Dockerfile. JIRA: DOVETAIL-534 Change-Id: If37a4d7c3b57ea79903565fd880c5447da97b13b Signed-off-by: xudan <xudan16@huawei.com>
-rw-r--r--docker/Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index a622f796..c5239dbb 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -23,6 +23,8 @@ RUN \
&& \
apt-get update
+RUN easy_install -U setuptools==30.0.0
+
RUN wget -qO- https://get.docker.com/ \
| \
sed 's/-q docker-ce/-q docker-ce=17.03.0~ce-0~ubuntu-trusty/' \