contrib: change Dockerfile to more reliable/distributed gnurl source
authorNils Gillmann <ng0@n0.is>
Thu, 17 May 2018 17:54:56 +0000 (17:54 +0000)
committerNils Gillmann <ng0@n0.is>
Thu, 17 May 2018 17:54:56 +0000 (17:54 +0000)
Signed-off-by: Nils Gillmann <ng0@n0.is>
contrib/Dockerfile

index d2f2d7c975ab0c95f1331039d899ee26b798abb8..974e41a5e04ffeba577fd3a185356ad0e00c6811 100644 (file)
@@ -5,9 +5,10 @@ RUN dnf -y update && dnf -y install which git automake texinfo gettext-devel aut
 
 WORKDIR /usr/src
 
-# Install gnurl from source at version gnurl-7.54.0
-RUN git clone https://git.taler.net/gnurl.git --branch gnurl-7.57.0
-WORKDIR /usr/src/gnurl
+# Install gnurl
+RUN wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.59.0.tar.gz
+RUN tar xvzpf gnurl-7.59.0.tar.gz
+WORKDIR /usr/src/gnurl-7.59.0
 RUN autoreconf -i
 RUN ./configure --disable-ntlm-wb
 RUN make install