From 5b32d3e4b998e063e21d3a8ebd6d5374dad519fe Mon Sep 17 00:00:00 2001 From: "igor.grzankowski" <@splunk.com> Date: Wed, 22 Oct 2025 10:29:40 +0200 Subject: [PATCH 1/2] Update ubi minimal image --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1da1087f2..e24e64553 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG PLATFORMS=linux/amd64,linux/arm64 # Refer to https://github.com/GoogleContainerTools/distroless for more details # This sha relates to ubi minimal version 8.10-1756195339, which is tagged as 8.10 and latest as of Sep 3, 2025 ARG BASE_IMAGE=registry.access.redhat.com/ubi8/ubi-minimal -ARG BASE_IMAGE_VERSION=8.10-1756195339 +ARG BASE_IMAGE_VERSION=8.10-1761032271 # Build the manager binary FROM golang:1.24.2 AS builder diff --git a/Makefile b/Makefile index 212b3b93c..e042877f2 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ docker-push: ## Push docker image with the manager. # Setup defaults for build arguments PLATFORMS ?= linux/amd64,linux/arm64 BASE_IMAGE ?= registry.access.redhat.com/ubi8/ubi-minimal -BASE_IMAGE_VERSION ?= 8.10-1756195339 +BASE_IMAGE_VERSION ?= 8.10-1761032271 docker-buildx: @if [ -z "${IMG}" ]; then \ From 6aacdaf9be22ed7feb52008cc4219648670fa999 Mon Sep 17 00:00:00 2001 From: "igor.grzankowski" <@splunk.com> Date: Tue, 4 Nov 2025 16:39:45 +0100 Subject: [PATCH 2/2] Remove/Update comment --- Dockerfile | 3 --- Makefile | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e24e64553..755601ed8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,6 @@ # Setup defaults for build arguments ARG PLATFORMS=linux/amd64,linux/arm64 -# Use distroless as minimal base image to package the manager binary -# Refer to https://github.com/GoogleContainerTools/distroless for more details -# This sha relates to ubi minimal version 8.10-1756195339, which is tagged as 8.10 and latest as of Sep 3, 2025 ARG BASE_IMAGE=registry.access.redhat.com/ubi8/ubi-minimal ARG BASE_IMAGE_VERSION=8.10-1761032271 diff --git a/Makefile b/Makefile index e042877f2..a20fd7e75 100644 --- a/Makefile +++ b/Makefile @@ -158,7 +158,7 @@ docker-push: ## Push docker image with the manager. # Defaults: # Build Platform: linux/amd64,linux/arm64 # Build Base OS: registry.access.redhat.com/ubi8/ubi-minimal -# Build Base OS Version: 8.10-1756195339 +# Build Base OS Version: 8.10-1761032271 # Pass only what is required, the rest will be defaulted # Setup defaults for build arguments PLATFORMS ?= linux/amd64,linux/arm64