From fe86a64f019cb8de4238123e06a43f0c6b2edf22 Mon Sep 17 00:00:00 2001 From: ramonskie Date: Fri, 1 Nov 2024 13:47:42 +0100 Subject: [PATCH] get the latest jq version --- ci/dockerfiles/deployment/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dockerfiles/deployment/Dockerfile b/ci/dockerfiles/deployment/Dockerfile index 615fa1649..d9f31755a 100644 --- a/ci/dockerfiles/deployment/Dockerfile +++ b/ci/dockerfiles/deployment/Dockerfile @@ -47,7 +47,7 @@ RUN echo "deb https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /et apt-get -qqy install google-cloud-cli # Install jq -RUN wget https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && \ +RUN wget https://github.com/stedolan/jq/releases/latest/download/jq-linux64 && \ mv jq-linux64 /usr/local/bin/jq && \ chmod +x /usr/local/bin/jq