X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=docker%2Fhealthcheck%2FDockerfile;h=1932c45bee3328eea2b28f1ed79f742eae8dea57;hb=1d0f0bbf773aaaf7139b76442a9e59d13bd32830;hp=33e20eef3e78f75903e3adc182d08d92aae42c7d;hpb=9e72ad1edd88aada55a0328cd72d4941c4e6fc60;p=functest.git diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile index 33e20eef3..1932c45be 100644 --- a/docker/healthcheck/Dockerfile +++ b/docker/healthcheck/Dockerfile @@ -1,7 +1,25 @@ -FROM opnfv/functest-core +FROM opnfv/functest-tempest -# useless build arg forced by releng/jjb/releng/opnfv-docker.sh ARG BRANCH=master +ARG OPENSTACK_TAG=master +ARG ODL_TAG=85448c9d97b89989488e675b29b38ac42d8674e4 -COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml -CMD ["bash","-c","prepare_env start && run_tests -t all"] +COPY thirdparty-requirements.txt thirdparty-requirements.txt +RUN apk --no-cache add --virtual .build-deps --update \ + python-dev build-base linux-headers libffi-dev openssl-dev && \ + wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \ + sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/git.openstack.org\\/openstack\\/tempest@\\1#egg=tempest/ \ + > upper-constraints.txt && \ + wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH | \ + sed -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 && \ + git init /src/odl_test && \ + (cd /src/odl_test && \ + git fetch --tags https://git.opendaylight.org/gerrit/p/integration/test.git $ODL_TAG && \ + git checkout FETCH_HEAD) && \ + rm -r /src/odl_test/.git thirdparty-requirements.txt upper-constraints.txt \ + upper-constraints.opnfv.txt && \ + apk del .build-deps +COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml +CMD ["run_tests", "-t", "all"]