From 4b784317235e8a0393cd419d21476f954d10e1d4 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Wed, 10 Apr 2024 11:02:13 -0400 Subject: [PATCH] Bump base bookworm image to 1.0.2 Signed-off-by: Davanum Srinivas --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 547c09d17..1b3c22e08 100644 --- a/Makefile +++ b/Makefile @@ -45,13 +45,13 @@ 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 ?= registry.k8s.io/build-image/debian-base:bookworm-v1.0.0 +BASEIMAGE ?= registry.k8s.io/build-image/debian-base:bookworm-v1.0.2 IMAGE := $(REGISTRY)/$(BIN) TAG := $(VERSION) OS_ARCH_TAG := $(TAG)__$(OS)_$(ARCH) -BUILD_IMAGE ?= golang:1.21-alpine +BUILD_IMAGE ?= golang:1.22-alpine DBG_MAKEFILE ?= ifneq ($(DBG_MAKEFILE),1)