diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-04-20 14:50:27 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-04-20 14:50:27 +0200 |
commit | 5de622a8247c4cf4fc2bd4e5f8a947e60a8c4bfb (patch) | |
tree | 2038bfaa94413367fd46e8bcd38600f2e49dac05 /security/docker/Dockerfile | |
parent | 3c64be99c3c24930674e9fa657993d95cbd2fe6d (diff) |
Resync integration/xtesting repo
Issue-ID: INT-1366
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I3af9c4697f0e67d3ce5b6d2fceeb978aeb20a0ff
Diffstat (limited to 'security/docker/Dockerfile')
-rw-r--r-- | security/docker/Dockerfile | 58 |
1 files changed, 52 insertions, 6 deletions
diff --git a/security/docker/Dockerfile b/security/docker/Dockerfile index 667900f..e38f565 100644 --- a/security/docker/Dockerfile +++ b/security/docker/Dockerfile @@ -1,12 +1,58 @@ -FROM opnfv/xtesting +FROM golang:1.13 AS build_aqua +WORKDIR /go/src/github.com/aquasecurity/ +RUN git clone https://github.com/aquasecurity/kube-bench.git --depth 1 +WORKDIR /go/src/github.com/aquasecurity/kube-bench +RUN GO111MODULE=on CGO_ENABLED=0 go install -a -ldflags "-w" +FROM golang:1.13 AS build_onap +WORKDIR /opt/onap +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 + +ARG KUBERNETES_VERSION="v1.15.2" +ARG HELM_VERSION="v2.14.1" ARG ONAP_TAG=master -ARG PIP_TAG=19.3.1 +ARG ONAP_TESTS_TAG=master + +# Install kubectl +# Note: Latest version may be found on: +# https://aur.archlinux.org/packages/kubectl-bin/ + +ADD https://storage.googleapis.com/kubernetes-release/release/${KUBERNETES_VERSION}/bin/linux/amd64/kubectl /usr/local/bin/kubectl + +COPY scripts/check_security_root.sh /check_security_root.sh +COPY scripts/root_pods_xfail.txt /root_pods_xfail.txt +COPY scripts/check_unlimitted_pods.sh /check_unlimitted_pods.sh +COPY scripts/check_cis_kubernetes.sh /check_cis_kubernetes.sh +COPY --from=build_aqua /go/bin/kube-bench /usr/local/bin/kube-bench +COPY --from=build_aqua /go/src/github.com/aquasecurity/kube-bench/cfg/ /cfg/ +COPY --from=build_onap /go/bin/sslendpoints /usr/local/bin/sslendpoints -COPY requirements.txt requirements.txt -RUN apk --no-cache add --virtual .build-deps --update \ - openssl-dev libjpeg-turbo-dev && \ +RUN set -x && \ + apk --no-cache add --update curl ca-certificates openssl procps util-linux \ + nmap nmap-scripts && \ + apk --no-cache add --virtual .build-deps --update \ + python3-dev linux-headers gcc musl-dev && \ + chmod +x /usr/local/bin/kubectl && \ + git clone --depth 1 https://github.com/aquasecurity/kube-hunter.git /kube-hunter && \ + adduser kubectl -Du 2342 -h /config && \ + wget https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm && \ + wget -O /check_for_nonssl_endpoints.sh https://git.onap.org/integration/plain/test/security/check_for_nonssl_endpoints.sh?h=$ONAP_TAG &&\ + wget -O /check_for_jdwp.sh https://git.onap.org/integration/plain/test/security/check_for_jdwp.sh?h=$ONAP_TAG &&\ + wget -O /jdwp_xfail.txt https://git.onap.org/integration/plain/test/security/jdwp_xfail.txt?h=$ONAP_TAG &&\ + wget -O /nonssl_xfail.txt https://git.onap.org/integration/plain/test/security/nonssl_xfail.txt?h=$ONAP_TAG &&\ + chmod +x /usr/local/bin/helm && \ + chmod +x /usr/local/bin/kube-bench && \ + chmod +x /usr/local/bin/sslendpoints && \ + chmod +x /check_*.sh && \ + pip3 install --upgrade pip && \ + pip3 install --no-cache-dir \ + git+https://gitlab.com/Orange-OpenSource/lfn/onap/integration/xtesting.git@$ONAP_TESTS_TAG#subdirectory=security && \ + cd /kube-hunter && pip3 install -r /kube-hunter/requirements.txt && \ apk del .build-deps COPY docker/testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml -CMD ["run_test -t all -r"] +CMD ["run_tests", "-t", "all"] |