From c0e4778fc0859bdf4db51f47d8743be6603e5e4d Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Fri, 29 Mar 2024 07:30:37 +0200 Subject: [PATCH 1/2] Update BASEIMAGE to debian-base:bookworm-v1.0.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f75e0e7e..d5b85c31 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ ENABLE_JOURNALD=0 endif # Set default base image to Debian 12 (Bookworm) -BASEIMAGE:=registry.k8s.io/build-image/debian-base:bookworm-v1.0.1 +BASEIMAGE:=registry.k8s.io/build-image/debian-base:bookworm-v1.0.2 # Disable cgo by default to make the binary statically linked. CGO_ENABLED:=0 From e37dcfc3ff2a67f062aaafd7f1090455ad5f8173 Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Fri, 29 Mar 2024 07:38:33 +0200 Subject: [PATCH 2/2] Update BUILDER to latest digest --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b25575f1..cc4b91e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ ARG BASEIMAGE # Must override builder-base, not builder, since the latter is referred to later in the file and so must not be # directly replaced. See here, and note that "stage" parameter mentioned there has been renamed to # "build-context": https://github.com/docker/buildx/pull/904#issuecomment-1005871838 -FROM golang:1.22.1-bookworm@sha256:6699d2852712f090399ccd4e8dfd079b4d55376f3ab3aff5b2dc8b7b1c11e27e as builder-base +FROM golang:1.22.1-bookworm@sha256:d996c645c9934e770e64f05fc2bc103755197b43fd999b3aa5419142e1ee6d78 as builder-base FROM builder-base as builder LABEL maintainer="Andy Xie "