Skip to content
Snippets Groups Projects
Commit b98dfbc7 authored by Liz Rice's avatar Liz Rice
Browse files

Dockerfile fix to copy all the cfg files

parent 9b121de5
Branches
Tags
No related merge requests found
...@@ -2,11 +2,8 @@ FROM golang:1.8 ...@@ -2,11 +2,8 @@ FROM golang:1.8
WORKDIR /kube-bench WORKDIR /kube-bench
RUN go get github.com/aquasecurity/kube-bench RUN go get github.com/aquasecurity/kube-bench
RUN cp /go/bin/kube-bench /kube-bench/ && chmod +x /kube-bench/kube-bench RUN cp /go/bin/kube-bench /kube-bench/ && chmod +x /kube-bench/kube-bench
WORKDIR /kube-bench/cfg RUN cp -r /go/src/github.com/aquasecurity/kube-bench/cfg cfg
RUN wget https://raw.githubusercontent.com/aquasecurity/kube-bench/master/cfg/config.yaml && \
wget https://raw.githubusercontent.com/aquasecurity/kube-bench/master/cfg/federated.yaml && \
wget https://raw.githubusercontent.com/aquasecurity/kube-bench/master/cfg/master.yaml && \
wget https://raw.githubusercontent.com/aquasecurity/kube-bench/master/cfg/node.yaml
# When Docker Hub supports it, we would split this into a multi-stage build with the second part based on, say, alpine for size # When Docker Hub supports it, we would split this into a multi-stage build with the second part based on, say, alpine for size
WORKDIR / WORKDIR /
ADD entrypoint.sh /entrypoint.sh ADD entrypoint.sh /entrypoint.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment