From 9b95c09e1a4e6b2e84ce5099f0014027ef2f27b4 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 21 Jun 2022 15:15:17 +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 1508f39..51246be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar curl && \ apk add --update --no-cache git && \ echo "Installing git-chglog version '${CHGLOG_VERSION##v}' ..." && \ - curl -SsL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \ + curl -SsfL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \ tar xz -C /usr/local/bin git-chglog && \ chmod 755 /usr/local/bin/git-chglog && \ apk del .build-deps && \