From b5b278f0b6e49ccdf397ffa2cbde90180a5bbd24 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 30 Jan 2022 17:15:32 +0100 Subject: [PATCH] fix(Dockerfile): follow redirections in curl --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7d56db6..8d376f3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update \ # External tools # yq => manage YML -RUN curl -o /usr/local/bin/yq \ +RUN curl -sSL -o /usr/local/bin/yq \ https://github.com/mikefarah/yq/releases/download/v4.18.1/yq_linux_amd64 \ && chmod +x /usr/local/bin/yq