1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-22 08:08:07 +00:00

More fix for Dockerfile.

This commit is contained in:
Abubakr-Sadik Nii Nai Davis 2018-08-10 12:35:19 +00:00
parent f91b9b0428
commit 197f6692e1

View File

@ -3,6 +3,9 @@ WORKDIR /go/src/github.com/aquasecurity/kube-bench/
ADD Gopkg.toml Gopkg.lock ./
RUN go get -v github.com/golang/dep/cmd/dep && dep ensure -v -vendor-only
RUN git clone https://github.com/aquasecurity/bench-common /go/src/github.com/aquasecurity/bench-common
WORKDIR /go/src/github.com/aquasecurity/bench-common/
RUN go get -v
WORKDIR /go/src/github.com/aquasecurity/bench-common/
COPY * /go/src/github.com/aquasecurity/kube-bench/
RUN CGO_ENABLED=0 go install -a -ldflags '-w'