From e38bb1ee4c2a5c2e03ad7af46631da37c5f189ba Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sun, 12 May 2019 12:58:29 +0200 Subject: Update to Python3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Functest containers leverage on Python3 instead of python2. https://mail.python.org/pipermail/python-dev/2018-March/152348.html Change-Id: I4f148e91259377b4e3b9076621f192a6e00f6009 Signed-off-by: Cédric Ollivier --- docker/core/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docker/core/Dockerfile') diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 19fe3c7d..88a6ea7f 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -4,14 +4,14 @@ ARG BRANCH=master ARG OPENSTACK_TAG=master ARG OPNFV_TAG=master -RUN apk --no-cache add --update python py-pip bash git grep && \ +RUN apk --no-cache add --update python3 bash git grep && \ apk --no-cache add --virtual .build-deps --update \ - python-dev build-base && \ + python3-dev build-base && \ git init /src/functest-kubernetes && \ (cd /src/functest-kubernetes && \ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \ git checkout FETCH_HEAD) && \ - pip install \ + pip3 install \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \ /src/functest-kubernetes && \ @@ -19,5 +19,5 @@ RUN apk --no-cache add --update python py-pip bash git grep && \ bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \ ln -s /var/lib/xtesting /home/opnfv/functest && \ apk del .build-deps -COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini +COPY logging.ini /usr/lib/python3.6/site-packages/xtesting/ci/logging.ini CMD ["run_tests", "-t", "all"] -- cgit 1.2.3-korg