From 49efc4a2c337f47e4192e267317352b3f0bc772b Mon Sep 17 00:00:00 2001 From: Martin Zibricky <527280+matysek@users.noreply.github.com> Date: Fri, 19 Jul 2024 12:44:07 +0200 Subject: [PATCH] [CCXDEV-13025] Use proper url to RH image registry --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bccc0f77..7d0a7312 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN ./build.sh && \ ################### # Builder ################### -FROM registry.redhat.io/rhel8/go-toolset:1.18 AS builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.18 AS builder USER 0