Bump base bookworm image to 1.0.2

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
This commit is contained in:
Davanum Srinivas 2024-04-10 11:02:13 -04:00
parent f521da5548
commit 4b78431723
No known key found for this signature in database
GPG Key ID: 80D83A796103BF59
1 changed files with 2 additions and 2 deletions

View File

@ -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)