File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 11FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.20-openshift-4.14
22ARG SDK_VERSION=v1.31.0
33ARG KUSTOMIZE_VERSION=v5.0.3
4+ ARG YQ_VERSION=v4.44.5
45USER root
56RUN yum install -y gcc git jq make python python-pip skopeo && yum clean all && rm -rf /var/cache/dnf/*
67RUN curl -s -L "https://github.com/operator-framework/operator-sdk/releases/download/${SDK_VERSION}/operator-sdk_linux_amd64" -o operator-sdk
@@ -10,3 +11,7 @@ RUN /usr/local/bin/operator-sdk version
1011RUN curl -s -L https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2F${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz | tar xvzf - -C /usr/local/bin kustomize
1112RUN chmod +x /usr/local/bin/kustomize
1213RUN /usr/local/bin/kustomize version
14+
15+ RUN curl -s -L https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -o /usr/local/bin/yq
16+ RUN chmod +x /usr/local/bin/yq
17+ RUN /usr/local/bin/yq --version
You can’t perform that action at this time.
0 commit comments