From 6bcc8e516df37c68ebe67c9f33a9f41b93bd9ba8 Mon Sep 17 00:00:00 2001 From: Glen Johnson Date: Thu, 21 Sep 2023 16:28:41 -0600 Subject: [PATCH] Avoid flattening conjur-ubi image --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ac7e101f8c..1ffbea821d 100755 --- a/build.sh +++ b/build.sh @@ -89,5 +89,6 @@ fi if image_doesnt_exist "conjur-ubi:$TAG"; then echo "Building image conjur-ubi:$TAG container" docker build --pull --build-arg "VERSION=$TAG" --tag "conjur-ubi:$TAG" --file Dockerfile.ubi . - flatten "conjur-ubi:$TAG" + # Avoid flattening RH image for now, otherwise it fails to pass RH's preflight scan + # flatten "conjur-ubi:$TAG" fi