From 54ed2ee5e89befb692dd2068b689af8dd5c5bfe3 Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Wed, 22 May 2024 16:16:05 +0100 Subject: [PATCH] Upgrade base image from UBI 8 to UBI 9 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 60834551..2239734f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o ma # Use distroless as minimal base image to package the manager binary # Refer to https://github.com/GoogleContainerTools/distroless for more details -FROM registry.access.redhat.com/ubi8/ubi-minimal:latest +FROM registry.access.redhat.com/ubi9/ubi-minimal:latest WORKDIR / COPY --from=builder /workspace/manager . USER 65532:65532