Skip to content

Commit 554e81a

Browse files
committed
Update base image to UBI 9 minimal, Go version to 1.25 and base CatalogSource to 4.19
1 parent b11c8d9 commit 554e81a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Build the manager binary
2-
FROM registry.access.redhat.com/ubi8-minimal:latest as builder
2+
FROM registry.access.redhat.com/ubi9-minimal:latest as builder
33
ARG GO_PLATFORM=amd64
44
ARG GO_VERSION_ARG
55
ENV PATH=$PATH:/usr/local/go/bin
6-
RUN microdnf install tar gzip
6+
RUN microdnf install -y tar gzip
77

88
WORKDIR /workspace
99
# Copy the Go Modules manifests
@@ -34,7 +34,7 @@ RUN CGO_ENABLED=0 GOOS=linux GO111MODULE=on go build -ldflags="-s -w" -a -o mana
3434

3535
# Use distroless as minimal base image to package the manager binary
3636
# Refer to https://github.com/GoogleContainerTools/distroless for more details
37-
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
37+
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
3838

3939
ARG USER_ID=65532
4040
ARG GROUP_ID=65532

bundle/manifests/runtime-component.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ metadata:
7171
categories: Application Runtime
7272
certified: "true"
7373
containerImage: icr.io/appcafe/runtime-component-operator:daily
74-
createdAt: "2025-08-14T20:19:15Z"
74+
createdAt: "2025-08-19T14:05:35Z"
7575
description: Deploys any runtime component with dynamic and auto-tuning configuration
7676
features.operators.openshift.io/disconnected: "true"
7777
features.operators.openshift.io/fips-compliant: "true"

catalog.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM registry.redhat.io/openshift4/ose-operator-registry:v4.14 AS builder
2-
FROM registry.redhat.io/ubi8/ubi-minimal
1+
FROM registry.redhat.io/openshift4/ose-operator-registry-rhel9:v4.19 AS builder
2+
FROM registry.redhat.io/ubi9/ubi-minimal
33

44
# Add label for location of Declarative Config root directory & required OpenShift labels
55
ARG VERSION_LABEL=1.4.4
@@ -31,7 +31,7 @@ COPY LICENSE /licenses
3131
USER root
3232

3333
# Pick up any latest fixes
34-
RUN microdnf update && microdnf clean all
34+
RUN microdnf update -y && microdnf clean all
3535

3636
# Copy required tooling, licenses, and declarative config into defined location
3737
COPY --from=builder --chown=1001:0 /bin/opm /bin/opm

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/application-stacks/runtime-component-operator
22

3-
go 1.24
3+
go 1.25
44

55
require (
66
github.com/cert-manager/cert-manager v1.16.5

0 commit comments

Comments
 (0)