From 97048c9a64d6e8bad1f8e6a704480db82562e207 Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Fri, 8 Mar 2024 10:02:59 -0500 Subject: [PATCH] freeze devfile-index-base at https://github.com/devfile/registry-support/commit/ffc3a09964b840b3d421dcf5d8d2afbf69322f64 Signed-off-by: Michael Valdron --- .ci/Dockerfile | 4 +++- .ci/Dockerfile.offline | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.ci/Dockerfile b/.ci/Dockerfile index a4968f5cd..df34232c5 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -31,6 +31,8 @@ RUN bash /registry-support/build-tools/build.sh /registry /build # Set user as non-root USER 1001 -FROM quay.io/devfile/devfile-index-base:next +# Freeze at devfile/registry-support commit ffc3a09 until Go 1.19 is supported, +# see https://github.com/devfile/api/issues/1473 +FROM quay.io/devfile/devfile-index-base:ffc3a09964b840b3d421dcf5d8d2afbf69322f64 COPY --from=builder /build /registry diff --git a/.ci/Dockerfile.offline b/.ci/Dockerfile.offline index b78d45e86..944f34598 100644 --- a/.ci/Dockerfile.offline +++ b/.ci/Dockerfile.offline @@ -40,7 +40,9 @@ RUN bash /registry-support/build-tools/build.sh /registry /build # Extract archived resources RUN bash /registry-support/build-tools/extract_resources.sh -FROM quay.io/devfile/devfile-index-base:next +# Freeze at devfile/registry-support commit ffc3a09 until Go 1.19 is supported, +# see https://github.com/devfile/api/issues/1473 +FROM quay.io/devfile/devfile-index-base:ffc3a09964b840b3d421dcf5d8d2afbf69322f64 # Set user as non-root USER 1001