From 0e42c0efd153c5f2dc0f036d219840388b9d6e57 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Thu, 29 Feb 2024 14:46:27 +0100 Subject: [PATCH] Update yq to version 4.42.1 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a65e18..f24d5cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,7 @@ ARG compose_version=2.24.6 ARG composer_version=2.7.1 ARG dockerArch ARG glibc_version=2.35-r1 +ARG yq_version=4.42.1 ADD usrbin/column /usr/bin/column ADD bin/* /usr/local/bin/ @@ -53,7 +54,7 @@ RUN echo 'hosts: files dns' > /etc/nsswitch.conf && \ tar --extract --file docker.tgz --strip-components 1 --directory /usr/local/bin/ && \ rm docker.tgz && \ \ - if ! curl -fSL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/v4.26.1/yq_linux_386"; then \ + if ! curl -fSL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/v${yq_version}/yq_linux_386"; then \ echo >&2 "error: failed to download 'yq'"; \ exit 1; \ fi && \ -- GitLab