fix(Dockerfile): follow redirections in curl

This commit is contained in:
Glenn Y. Rolland 2022-01-30 17:15:32 +01:00
parent 468783f50e
commit b5b278f0b6

View file

@ -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