From f6910d58f8646a14e4321e9e126c089bf2d45faf Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Fri, 8 Mar 2024 11:11:33 -0500 Subject: [PATCH] freeze devfile-index-base at https://github.com/devfile/registry-support/commit/ffc3a09964b840b3d421dcf5d8d2afbf69322f64 (#316) 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 a4968f5c..df34232c 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 b78d45e8..944f3459 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