diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-08-31 10:56:23 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-08-31 11:28:29 +0200 |
commit | 8f248fdac64b936bcc2be440e32b5e90d0a3c665 (patch) | |
tree | 4c05f28127cf15d8a0099703da2a3c4dd5a8a11a /docker/features/Dockerfile | |
parent | fed2bccd13a96ce4bc1001c39fb0617587cffb19 (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: Ia8475ce295b2cdcddbfcfc5b17ea2ab9e51a8afb
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit ae4dc14668405c57c56b4984b3ec815ec32764ac)
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r-- | docker/features/Dockerfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile deleted file mode 100644 index d71224e74..000000000 --- a/docker/features/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM opnfv/functest-tempest:iruya - -ARG BRANCH=stable/iruya -ARG OPENSTACK_TAG=stable/stein -ARG TEMPEST_TAG=21.0.0 - -COPY thirdparty-requirements.txt thirdparty-requirements.txt -RUN apk --no-cache add --update python3 sshpass && \ - apk --no-cache add --virtual .build-deps --update \ - python-dev python3-dev build-base linux-headers libffi-dev \ - openssl-dev libjpeg-turbo-dev file && \ - wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \ - sed -i -E s/^tempest==+.*$/-e\ git+https:\\/\\/opendev.org\\/openstack\\/tempest@$TEMPEST_TAG#egg=tempest/ upper-constraints.txt && \ - case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \ - wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \ - sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \ - pip install --no-cache-dir --src /src -cupper-constraints.txt \ - -cupper-constraints.opnfv.txt \ - -rthirdparty-requirements.txt && \ - python3 -m pip install --no-cache-dir --src /src -cupper-constraints.txt \ - -cupper-constraints.opnfv.txt \ - -rthirdparty-requirements.txt && \ - rm -r upper-constraints.txt upper-constraints.opnfv.txt thirdparty-requirements.txt && \ - apk del .build-deps -COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml -CMD ["run_tests", "-t", "all"] |