Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/v4.9.5/yq_linu
COPY . /registry

# Download the registry build tools
RUN git clone https://github.com/devfile/registry-support.git /registry-support
# Freeze index/generator version at v1.1.0 until Go 1.19 is supported,
# see https://github.com/devfile/api/issues/1473
RUN git clone https://github.com/devfile/registry-support.git -b v1.1.0 /registry-support

# Run the registry build tools
RUN bash /registry-support/build-tools/build.sh /registry /build
Expand Down
4 changes: 3 additions & 1 deletion .ci/Dockerfile.offline
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ RUN curl -sL -O https://github.com/mikefarah/yq/releases/download/v4.9.5/yq_linu
COPY . /registry

# Download the registry build tools
RUN git clone https://github.com/devfile/registry-support.git /registry-support
# Freeze index/generator version at v1.1.0 until Go 1.19 is supported,
# see https://github.com/devfile/api/issues/1473
RUN git clone https://github.com/devfile/registry-support.git -b v1.1.0 /registry-support

# Download all the offline parent devfiles
RUN bash /registry-support/build-tools/dl_parent_devfiles.sh
Expand Down