From: Linda Wang Date: Fri, 2 Jun 2017 07:09:21 +0000 (+0000) Subject: Update setuptools version to 35.0.2 X-Git-Tag: opnfv-5.0.RC1~341^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F35703%2F4;p=functest.git Update setuptools version to 35.0.2 Docker build failed in CI due to the low version of setuptools(3.3) Change-Id: I5e9b15f59e2cc5e78f5ab1b30fd1525b667f09fb Signed-off-by: Linda Wang --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 21ae33437..4c8205ae3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -66,7 +66,7 @@ sshpass \ wget \ --no-install-recommends -RUN pip install --upgrade pip +RUN pip install --upgrade pip && easy_install -U setuptools==35.0.2 RUN mkdir -p ${REPOS_DIR} \ && mkdir -p ${REPOS_VNFS_DIR} \ diff --git a/docker/Dockerfile.aarch64 b/docker/Dockerfile.aarch64 index 729646119..c35500fa0 100644 --- a/docker/Dockerfile.aarch64 +++ b/docker/Dockerfile.aarch64 @@ -65,7 +65,7 @@ sshpass \ wget \ --no-install-recommends -RUN pip install --upgrade pip +RUN pip install --upgrade pip && easy_install -U setuptools==35.0.2 RUN mkdir -p ${REPOS_DIR} \ && mkdir -p ${REPOS_VNFS_DIR} \