From 1b075edd8131e9efbe54fa148ff256f97b4bcf2b Mon Sep 17 00:00:00 2001 From: Adrian Riobo Lorenzo Date: Mon, 29 Apr 2024 10:07:57 +0200 Subject: [PATCH] [qe] Use ubi8 image as builder for qe images As part of commit https://github.com/crc-org/crc/commit/ae4e57fea6881f4920c3dca397a165bf409d7092 we changed the e2e and integration images; as ubi9 based images were used to build the e2e and integration binaries those can not be executed on RHEL8 target hosts. This fix change the builders to use ubi8 based images Signed-off-by: Adrian Riobo Lorenzo --- images/build-e2e/Containerfile | 2 +- images/build-integration/Containerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/build-e2e/Containerfile b/images/build-e2e/Containerfile index 25160ba121..94aaa7634c 100644 --- a/images/build-e2e/Containerfile +++ b/images/build-e2e/Containerfile @@ -1,5 +1,5 @@ -FROM registry.access.redhat.com/ubi9/go-toolset:1.20 AS builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.20 AS builder USER root diff --git a/images/build-integration/Containerfile b/images/build-integration/Containerfile index 6eda99fd71..ca498f963a 100644 --- a/images/build-integration/Containerfile +++ b/images/build-integration/Containerfile @@ -1,5 +1,5 @@ -FROM registry.access.redhat.com/ubi9/go-toolset:1.20 AS builder +FROM registry.access.redhat.com/ubi8/go-toolset:1.20 AS builder USER root