From 5149d87c348555184e2ecc48e57697531c5ff38b Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 31 Aug 2019 11:20:46 +0200 Subject: Remove Features containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most the features are stopped and Functest shouldn't host dead code. Functest is a framework (Docker and Python modules) which can be still reused by any third-party (OPNFV Feature or anything else) in its tree and CI Change-Id: Ie2f5beddd21b09aabfbdf2bb2f3366e652d43b3a Signed-off-by: Cédric Ollivier --- docker/features/Dockerfile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 docker/features/Dockerfile (limited to 'docker/features/Dockerfile') diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile deleted file mode 100644 index 1e91fe7f..00000000 --- a/docker/features/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -FROM opnfv/functest-kubernetes-core - -ARG OPENSTACK_TAG=master -ARG OPNFV_TAG=master - -COPY thirdparty-requirements.txt thirdparty-requirements.txt -RUN apk --no-cache add --update make bash git go \ - grep rsync linux-headers musl-dev findutils \ - libffi openssl libjpeg-turbo && \ - apk --no-cache add --virtual .build-deps --update \ - python3-dev libffi-dev openssl-dev libjpeg-turbo-dev && \ - 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 \ - -rthirdparty-requirements.txt && \ - rm -f thirdparty-requirements.txt && \ - apk del .build-deps -COPY testcases.yaml /usr/lib/python3.7/site-packages/xtesting/ci/testcases.yaml -CMD ["run_tests", "-t", "all"] -- cgit