Skip to content
Merged
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
5 changes: 1 addition & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# 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-1756195339
ARG BASE_IMAGE_VERSION=8.10-1761032271

# Build the manager binary
FROM golang:1.24.2 AS builder
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ 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
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