Add -L to curl to support sourceforge redirects

As per @hoellens suggestion

Co-Authored-By: hoellen <hoellen@users.noreply.github.com>
master
Nebukadneza 5 years ago committed by GitHub
parent 5f4a6cf16b
commit 94dbddd933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save