1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-26 01:49:28 +00:00

More fix for Dockerfile.

This commit is contained in:
Abubakr-Sadik Nii Nai Davis 2018-08-10 12:29:14 +00:00
parent 15c35bab03
commit f91b9b0428

View File

@ -2,7 +2,7 @@ FROM golang:1.9 AS build
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
RUN git clone https://github.com/aquasecurity/bench-common /go/src/github.com/aquasecurity/bench-common
COPY * /go/src/github.com/aquasecurity/kube-bench/
RUN CGO_ENABLED=0 go install -a -ldflags '-w'