From fbc94dbe71985204172a3ba1c75da00523abb355 Mon Sep 17 00:00:00 2001 From: Erik Wilson Date: Tue, 15 Oct 2019 11:19:41 -0700 Subject: [PATCH] Update sonobuoy to v0.16.2 --- Dockerfile.sonobuoy.dapper | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile.sonobuoy.dapper b/Dockerfile.sonobuoy.dapper index 4827af2b7d..ef56f92b26 100644 --- a/Dockerfile.sonobuoy.dapper +++ b/Dockerfile.sonobuoy.dapper @@ -1,9 +1,12 @@ FROM golang:1.13.1-alpine3.10 RUN apk -U --no-cache add bash git gcc musl-dev docker curl jq coreutils -RUN go get -d github.com/heptio/sonobuoy && \ - git -C /go/src/github.com/heptio/sonobuoy checkout -b current v0.16.1 && \ - go install github.com/heptio/sonobuoy +RUN SONOBUOY_VER=v0.16.2 && \ + SONOBUOY_PKG=github.com/vmware-tanzu/sonobuoy && \ + go get -d ${SONOBUOY_PKG} && \ + cd /go/src/${SONOBUOY_PKG} && \ + git checkout -b current ${SONOBUOY_VER} && \ + go build -o /usr/local/bin/sonobuoy RUN rm -rf /go/src /go/pkg ARG DAPPER_HOST_ARCH