2020-10-03 10:30:01 +00:00
|
|
|
FROM golang:1.15 AS build
|
2018-05-06 18:35:23 +00:00
|
|
|
WORKDIR /go/src/github.com/aquasecurity/kube-bench/
|
2019-11-27 16:25:19 +00:00
|
|
|
COPY go.mod go.sum ./
|
|
|
|
COPY main.go .
|
|
|
|
COPY check/ check/
|
|
|
|
COPY cmd/ cmd/
|
2019-10-12 22:53:17 +00:00
|
|
|
ARG KUBEBENCH_VERSION
|
2020-09-14 06:26:29 +00:00
|
|
|
ARG GOOS=linux
|
|
|
|
ARG GOARCH=amd64
|
|
|
|
RUN GO111MODULE=on CGO_ENABLED=0 GOOS=$GOOS GOARCH=$GOARCH go build -a -ldflags "-X github.com/aquasecurity/kube-bench/cmd.KubeBenchVersion=${KUBEBENCH_VERSION} -w" -o /go/bin/kube-bench
|
2017-10-02 10:38:45 +00:00
|
|
|
|
2020-07-21 09:09:41 +00:00
|
|
|
FROM alpine:3.12 AS run
|
2018-05-06 18:35:23 +00:00
|
|
|
WORKDIR /opt/kube-bench/
|
|
|
|
# add GNU ps for -C, -o cmd, and --no-headers support
|
|
|
|
# https://github.com/aquasecurity/kube-bench/issues/109
|
|
|
|
RUN apk --no-cache add procps
|
2019-12-13 15:09:30 +00:00
|
|
|
|
|
|
|
# Openssl is used by OpenShift tests
|
|
|
|
# https://github.com/aquasecurity/kube-bench/issues/535
|
|
|
|
RUN apk --no-cache add openssl
|
|
|
|
|
2020-02-12 17:18:44 +00:00
|
|
|
ENV PATH=$PATH:/usr/local/mount-from-host/bin
|
|
|
|
|
2018-05-06 18:35:23 +00:00
|
|
|
COPY --from=build /go/bin/kube-bench /usr/local/bin/kube-bench
|
2019-11-27 16:25:19 +00:00
|
|
|
COPY entrypoint.sh .
|
|
|
|
COPY cfg/ cfg/
|
2018-05-06 18:35:23 +00:00
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
2018-05-07 02:18:47 +00:00
|
|
|
CMD ["install"]
|
2017-06-22 15:15:12 +00:00
|
|
|
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
|
|
|
ARG BUILD_DATE
|
|
|
|
ARG VCS_REF
|
|
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
|
|
|
org.label-schema.name="kube-bench" \
|
|
|
|
org.label-schema.description="Run the CIS Kubernetes Benchmark tests" \
|
|
|
|
org.label-schema.url="https://github.com/aquasecurity/kube-bench" \
|
|
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
|
|
org.label-schema.vcs-url="https://github.com/aquasecurity/kube-bench" \
|
|
|
|
org.label-schema.schema-version="1.0"
|