Commit fbc94dbe authored by Erik Wilson's avatar Erik Wilson

Update sonobuoy to v0.16.2

parent 25c81f3c
FROM golang:1.13.1-alpine3.10 FROM golang:1.13.1-alpine3.10
RUN apk -U --no-cache add bash git gcc musl-dev docker curl jq coreutils RUN apk -U --no-cache add bash git gcc musl-dev docker curl jq coreutils
RUN go get -d github.com/heptio/sonobuoy && \ RUN SONOBUOY_VER=v0.16.2 && \
git -C /go/src/github.com/heptio/sonobuoy checkout -b current v0.16.1 && \ SONOBUOY_PKG=github.com/vmware-tanzu/sonobuoy && \
go install github.com/heptio/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 RUN rm -rf /go/src /go/pkg
ARG DAPPER_HOST_ARCH ARG DAPPER_HOST_ARCH
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment