tempest_horizon has been merged into openstack/tempest
[functest.git] / docker / healthcheck / Dockerfile
index 6dfea7f..5ec2471 100644 (file)
@@ -1,4 +1,15 @@
-FROM ollivier/functest-core
+FROM opnfv/functest-core
 
-COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
-CMD ["bash","-c","prepare_env start && run_tests -t all"]
+ARG ODL_TAG=89b88a0a23561f0bda62338b394ec41655679b2d
+
+COPY thirdparty-requirements.txt thirdparty-requirements.txt
+RUN apk --no-cache add --virtual .build-deps --update \
+        python3-dev build-base linux-headers libffi-dev openssl-dev && \
+    git init /src/odl_test && \
+    (cd /src/odl_test && \
+        git fetch --tags https://git.opendaylight.org/gerrit/integration/test $ODL_TAG && \
+        git checkout FETCH_HEAD) && \
+    rm -r /src/odl_test/.git thirdparty-requirements.txt && \
+    apk del .build-deps
+COPY testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml
+CMD ["run_tests", "-t", "all"]