Update to Apine 3.9
[functest-kubernetes.git] / docker / features / Dockerfile
index 567e797..1629cfc 100644 (file)
@@ -1,17 +1,19 @@
 FROM opnfv/functest-kubernetes-core:hunter
 
 ARG OPENSTACK_TAG=stable/rocky
-ARG OPNFV_TAG=master
+ARG OPNFV_TAG=stable/hunter
 
+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 && \
+        libffi openssl libjpeg-turbo && \
     apk --no-cache add --virtual .build-deps --update \
         python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \
     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"]