From 94dbddd9338223fdb4c8daf7797159535732c6f1 Mon Sep 17 00:00:00 2001 From: Nebukadneza Date: Mon, 24 Jun 2019 16:07:32 +0200 Subject: [PATCH] Add -L to curl to support sourceforge redirects As per @hoellens suggestion Co-Authored-By: hoellen --- services/fetchmail/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/fetchmail/Dockerfile b/services/fetchmail/Dockerfile index 4636cd3f..431581c7 100644 --- a/services/fetchmail/Dockerfile +++ b/services/fetchmail/Dockerfile @@ -4,7 +4,7 @@ FROM alpine:3.8 as builder # build dependencies RUN apk add --no-cache curl tar xz autoconf git gettext build-base openssl openssl-dev -RUN curl 'https://netcologne.dl.sourceforge.net/project/fetchmail/branch_6.3/fetchmail-7.0.0-alpha6.tar.xz' | tar xJ +RUN curl -L 'https://netcologne.dl.sourceforge.net/project/fetchmail/branch_6.3/fetchmail-7.0.0-alpha6.tar.xz' | tar xJ RUN cd fetchmail-7.0.0-alpha6 && \ ./configure --with-ssl --prefix /usr/local --disable-nls && \ make