From 35507943ce02de8b3527d62f46aba0e9f87c89e5 Mon Sep 17 00:00:00 2001 From: Stephen Augustus Date: Fri, 12 Feb 2021 12:15:59 -0500 Subject: [PATCH] Makefile: Update base and build images - base: debian-base:v2.0.0 --> debian-base:buster-v1.4.0 - build: golang:1.14-alpine --> golang:1.15-alpine Signed-off-by: Stephen Augustus --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cb344bf..b7e2f07 100644 --- a/Makefile +++ b/Makefile @@ -36,12 +36,12 @@ ALL_PLATFORMS := linux/amd64 linux/arm linux/arm64 linux/ppc64le linux/s390x OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS)) ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) -BASEIMAGE ?= k8s.gcr.io/debian-base:v2.0.0 +BASEIMAGE ?= k8s.gcr.io/build-image/debian-base:buster-v1.4.0 IMAGE := $(REGISTRY)/$(BIN) TAG := $(VERSION)__$(OS)_$(ARCH) -BUILD_IMAGE ?= golang:1.14-alpine +BUILD_IMAGE ?= golang:1.15-alpine # If you want to build all binaries, see the 'all-build' rule. # If you want to build all containers, see the 'all-container' rule.