diff options
Diffstat (limited to 'security/docker/Dockerfile')
-rw-r--r-- | security/docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/docker/Dockerfile b/security/docker/Dockerfile index b6b35d2..ded4d3e 100644 --- a/security/docker/Dockerfile +++ b/security/docker/Dockerfile @@ -16,7 +16,7 @@ RUN git clone https://git.onap.org/integration --depth 1 WORKDIR /opt/onap/integration/test/security/sslendpoints RUN CGO_ENABLED=0 go install -a -ldflags '-w -s -extldflags "-static"' -FROM opnfv/xtesting AS run +FROM opnfv/xtesting:wallaby AS run ARG KUBERNETES_VERSION="v1.19.9" ARG ONAP_TAG=master @@ -58,6 +58,7 @@ RUN set -x && \ chmod +x /usr/local/bin/kube-bench && \ chmod +x /usr/local/bin/sslendpoints && \ chmod +x /check_*.sh && \ + rm -rf /usr/lib/python3.8/site-packages/PyYAML* && \ pip3 install --upgrade pip && \ pip3 install --no-cache-dir \ git+https://git.onap.org/integration/xtesting.git@$ONAP_TESTS_TAG#subdirectory=security && \ |