From b3e015c843098d28e893fc5b328b6d9224b4b1f8 Mon Sep 17 00:00:00 2001 From: Nick Boldt Date: Sat, 4 Jan 2025 00:05:14 +0000 Subject: [PATCH 1/2] chore: Update from ubi8/go-toolset:1.22.7-5 to ubi8/go-toolset:1.22.9-1 Signed-off-by: Nick Boldt --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 7254ae6..b4510c4 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -11,7 +11,7 @@ # Build the manager binary # https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8/go-toolset -FROM registry.access.redhat.com/ubi8/go-toolset:1.22.7-5 as builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.22.9-1 as builder ENV GOPATH=/go/ ARG SKIP_TESTS="false" USER root From 5080a4b10c0cfe24d174b8bc72b111a7483fcb2e Mon Sep 17 00:00:00 2001 From: Nick Boldt Date: Sat, 4 Jan 2025 00:05:25 +0000 Subject: [PATCH 2/2] chore: Update from ubi8-minimal:8.10-1130 to ubi8-minimal:8.10-1154 Signed-off-by: Nick Boldt --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index b4510c4..e0d0f3e 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -39,7 +39,7 @@ RUN if [[ ${SKIP_TESTS} == "false" ]]; then make test; fi RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o manager main.go # https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8-minimal -FROM registry.access.redhat.com/ubi8-minimal:8.10-1130 +FROM registry.access.redhat.com/ubi8-minimal:8.10-1154 ENV OPERATOR=/manager \ USER_UID=1001 \