aboutsummaryrefslogtreecommitdiffstats
path: root/docker/features/Dockerfile
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-08-31 11:20:46 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2019-08-31 11:20:46 +0200
commit5149d87c348555184e2ecc48e57697531c5ff38b (patch)
treea8bb269429430f39f46737204d2758f98300b84b /docker/features/Dockerfile
parent112ce709f65a1bb03200fbe11d20987f74313272 (diff)
Remove Features containers
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 <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r--docker/features/Dockerfile19
1 files changed, 0 insertions, 19 deletions
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"]