From 6cac0f1cf80e0eefc1b85b1a19ad3298bf9ddf94 Mon Sep 17 00:00:00 2001 From: Domenico Francesco Bruscino Date: Mon, 11 Nov 2024 17:05:39 +0100 Subject: [PATCH] [#1044] Change base image in update workflow to ubi8-minimal --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index ded330f8..e276198a 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -77,7 +77,7 @@ jobs: if: ${{ inputs.update_base_image }} run: | if [ "${{ inputs.base_image }}" = "latest" ]; then - BASE_IMAGE="registry.access.redhat.com/ubi8:$(basename $(skopeo inspect docker://registry.access.redhat.com/ubi8:latest | jq -r '.Labels.url'))" + BASE_IMAGE="registry.access.redhat.com/ubi8-minimal:$(basename $(skopeo inspect docker://registry.access.redhat.com/ubi8-minimal:latest | jq -r '.Labels.url'))" else BASE_IMAGE="${{ inputs.base_image }}" fi