Dockerfile: adjust to gnurl-7.57.0
authorng0 <ng0@n0.is>
Thu, 4 Jan 2018 16:29:08 +0000 (16:29 +0000)
committerng0 <ng0@n0.is>
Thu, 4 Jan 2018 16:29:08 +0000 (16:29 +0000)
contrib/Dockerfile

index 5a193a46d75ae119d23abef9554547017f71a6a2..a22109bb160bf0005898c6f82addf0dfd300abc7 100644 (file)
@@ -6,17 +6,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.54.0
+RUN git clone https://git.taler.net/gnurl.git --branch gnurl-7.57.0
 WORKDIR /usr/src/gnurl
 RUN autoreconf -i
-RUN ./configure --enable-ipv6 --with-gnutls --without-libssh2 \
---without-libmetalink --without-winidn --without-librtmp \
---without-nghttp2 --without-nss --without-cyassl \
---without-polarssl --without-ssl --without-winssl \
---without-darwinssl --disable-sspi --disable-ntlm-wb --disable-ldap \
---disable-rtsp --disable-dict --disable-telnet --disable-tftp \
---disable-pop3 --disable-imap --disable-smtp --disable-gopher \
---disable-file --disable-ftp --disable-smb
+RUN ./configure --disable-ntlm-wb
 RUN make install
 WORKDIR /usr/src