From d3d31d0f76aa12c41612ba7dfed443dfd102c481 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 21 Jun 2022 15:15:19 +0200 Subject: [PATCH] fix: force curl to fail on error --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6793fed..fd17ed3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ ENV LHCI_BASE_DIR=/drone/src \ ADD overlay/ / RUN apt-get update && apt-get install -y git curl wget gnupg jq bash bc && \ - curl -SsL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \ + curl -SsfL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \ chmod 755 /usr/local/bin/yq && \ wget -qO - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | apt-key add - && \ echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | tee "/etc/apt/sources.list.d/google.list" && \