From 5a91734aacbfb15d2feeeea6e9bb8c8f856809da Mon Sep 17 00:00:00 2001 From: lgtm <1gtm@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:48:12 -0700 Subject: [PATCH] Use debian:12 base image (#22) Signed-off-by: 1gtm <1gtm@appscode.com> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 74d47d9..7e28251 100644 --- a/Makefile +++ b/Makefile @@ -51,8 +51,8 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS)) ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) -BASEIMAGE_PROD ?= gcr.io/distroless/static-debian11 -BASEIMAGE_DBG ?= debian:bullseye +BASEIMAGE_PROD ?= gcr.io/distroless/static-debian12 +BASEIMAGE_DBG ?= debian:12 GO_VERSION ?= 1.20 BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)