From 249791a9b89740291c9780c066ac6a33e5abe1e9 Mon Sep 17 00:00:00 2001 From: Spolti Date: Mon, 20 May 2024 14:58:00 -0300 Subject: [PATCH] Use latest tag for ubi base image Signed-off-by: Spolti --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0d19281..5970efa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8 as build_base +FROM registry.access.redhat.com/ubi8/ubi-minimal:latest as build_base # https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope # don't provide "default" values (e.g. 'ARG TARGETARCH=amd64') for non-buildx environments, @@ -82,7 +82,7 @@ RUN echo "$(date '+%Y%m%d')-$(git rev-parse HEAD | cut -c -5)" > target/dockerho ############################################################################### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6 AS runtime +FROM registry.access.redhat.com/ubi8/ubi-minimal:latest AS runtime # TODO: FROM registry.access.redhat.com/ubi8/openjdk-17-runtime:1.15