From 0a084a63ea446dcc5f940e13aaba5b6d692ef8c6 Mon Sep 17 00:00:00 2001 From: Andreas Auernhammer Date: Wed, 25 Oct 2023 08:39:51 +0000 Subject: [PATCH] update container base image to ubi9 This commit updates the container base image to ubi9/ubi-9.2. It is ~4 MB smaller than ubi-8. Signed-off-by: Andreas Auernhammer --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3b9e4363f8..57df8e2b530 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8 as build +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 as build RUN microdnf update --nodocs && microdnf install ca-certificates --nodocs -FROM registry.access.redhat.com/ubi8/ubi-micro:8.8 +FROM registry.access.redhat.com/ubi9/ubi-micro:9.2 ARG TAG