From 7b5aafa726e7bac6e8fb4b6184bc0808dc741648 Mon Sep 17 00:00:00 2001 From: James Jones Date: Sat, 25 Feb 2023 07:55:42 -0500 Subject: [PATCH] Adding on the yq utility --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9720d69..4a79133 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ${ARTIFACTORY}/podman/stable:latest # Adding on the docker alias, docker-compose and other useful stuff RUN dnf install -y podman-docker buildah skopeo docker-compose \ - util-linux ansible-core openssh-clients krb5-devel krb5-libs krb5-workstation git jq unzip coreutils \ + util-linux ansible-core openssh-clients krb5-devel krb5-libs krb5-workstation git jq wget curl unzip coreutils \ helm doctl kubernetes-client gnupg2 pinentry expect gh awscli # Adding the Azure CLI @@ -26,5 +26,9 @@ COPY rpm-sign-expect /usr/bin RUN chmod +x /usr/bin/rpm-sign-expect +# Get the latest version of the unpackage yq utility +RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq \ + && chmod +x /usr/bin/yq + # Remove the Emulate Docker CLI using podman messages RUN touch /etc/containers/nodocker \ No newline at end of file