summaryrefslogtreecommitdiffstats
path: root/docker/features/Dockerfile
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-13 22:10:37 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-10-09 03:36:32 +0200
commitb60fb21cb436d0bf804aa143f265c7533f029c38 (patch)
treef7f1f31c9ddc70fb45012600ab672f5c39c692ea /docker/features/Dockerfile
parent566f261bc619dee6ed7195a5f6fb331bd08912ae (diff)
Disable OPNFV Features
From the time being, none is synced to OPNFV hunter or newer. Change-Id: If8a39bd185d1b7d396ea61bfebca2416b9bd5566 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit abea5c1c65e1b381cfa2f138ac94c9b344f1289a)
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r--docker/features/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile
index 35469097..15c9edd7 100644
--- a/docker/features/Dockerfile
+++ b/docker/features/Dockerfile
@@ -3,6 +3,7 @@ FROM opnfv/functest-kubernetes-core:gambia
ARG OPENSTACK_TAG=stable/queens
ARG OPNFV_TAG=stable/gambia
+COPY thirdparty-requirements.txt thirdparty-requirements.txt
RUN apk --no-cache add --update make py-pip bash git go \
grep rsync linux-headers musl-dev findutils \
libffi libssl1.0 libjpeg-turbo && \
@@ -11,7 +12,8 @@ RUN apk --no-cache add --update make py-pip bash git go \
pip install \
-chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
-chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \
- stor4nfv-tests clover && \
+ -rthirdparty-requirements.txt && \
+ rm -f 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"]