Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update version in the comment or remove it

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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same above


docker-buildx:
@if [ -z "${IMG}" ]; then \
Expand Down
Loading