From 14a6578453ee9348172cbc529e559900e8165873 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 21 Jun 2022 15:15:22 +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 290da31..6239672 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN apk --update add --virtual .build-deps tar curl && \ apk --update add openssl postgresql-libs sqlite ca-certificates && \ mkdir -p /app/web-vault /app/data && \ echo "Using Web Vault version '${WEBVAULT_VERSION##v}' ..." && \ - curl -SsL "https://github.com/dani-garcia/bw_web_builds/releases/download/${WEBVAULT_VERSION}/bw_web_${WEBVAULT_VERSION}.tar.gz" | \ + curl -SsfL "https://github.com/dani-garcia/bw_web_builds/releases/download/${WEBVAULT_VERSION}/bw_web_${WEBVAULT_VERSION}.tar.gz" | \ tar xz -C /app && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \