From ad20618148226988bba9675e440c86169b9e76a0 Mon Sep 17 00:00:00 2001 From: Bruno Miguel Custodio Date: Thu, 24 May 2018 18:02:31 +0200 Subject: [PATCH] Bump Go build images to 1.10. Signed-off-by: Bruno Miguel Custodio --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b3966eaea..b77a57f30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.9-alpine3.6 +FROM golang:1.10-alpine MAINTAINER Timothy St. Clair "tstclair@heptio.com" RUN apk add --no-cache ca-certificates bash diff --git a/Makefile b/Makefile index e8d8eea2d..5cdabad68 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ ifneq ($(VERBOSE),) VERBOSE_FLAG = -v endif BUILDMNT = /go/src/$(GOTARGET) -BUILD_IMAGE ?= golang:1.9-alpine3.6 +BUILD_IMAGE ?= golang:1.10-alpine BUILDCMD = go build -o $(TARGET) $(VERBOSE_FLAG) -ldflags "-X github.com/heptio/sonobuoy/pkg/buildinfo.Version=$(GIT_VERSION)" BUILD = $(BUILDCMD) $(GOTARGET)