Skip to content

Commit

Permalink
Add yq to Dockerfile.rhel-9.custom
Browse files Browse the repository at this point in the history
Also bumps kustomize version
  • Loading branch information
dprince committed Nov 19, 2024
1 parent bec56f4 commit 6f5c601
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion images/build-root/Dockerfile.rhel-9.custom
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.20-openshift-4.14
ARG SDK_VERSION=v1.31.0
ARG KUSTOMIZE_VERSION=v5.0.3
ARG KUSTOMIZE_VERSION=v5.5.0
ARG YQ_VERSION=v4.44.5
USER root
RUN yum install -y gcc git jq make python python-pip skopeo && yum clean all && rm -rf /var/cache/dnf/*
RUN curl -s -L "https://github.com/operator-framework/operator-sdk/releases/download/${SDK_VERSION}/operator-sdk_linux_amd64" -o operator-sdk
Expand All @@ -10,3 +11,7 @@ RUN /usr/local/bin/operator-sdk version
RUN 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
RUN chmod +x /usr/local/bin/kustomize
RUN /usr/local/bin/kustomize version

RUN curl -s -L https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -o /usr/local/bin/yq
RUN chmod +x /usr/local/bin/yq
RUN /usr/local/bin/yq --version

0 comments on commit 6f5c601

Please sign in to comment.