taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit bc3667abde81eb479205454962ad7a7252c4f838
parent 5d497ee4a95b35475903ad32001af0170762ea5a
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 14 Nov 2016 00:32:25 +0100

libgnurl -> libcurl

Diffstat:
Mdocker/base/Dockerfile | 17+++++------------
1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/docker/base/Dockerfile b/docker/base/Dockerfile @@ -13,27 +13,20 @@ RUN apt-get update && apt-get install -qqy \ libunistring-dev \ libjansson-dev \ libpq-dev \ - libmicrohttpd-dev + libmicrohttpd-dev \ + libcurl4-gnutls-dev RUN git clone https://gnunet.org/git/gnunet/ \ - && git clone https://gnunet.org/git/libmicrohttpd/ \ - && git clone git://taler.net/gnurl/ + && git clone https://gnunet.org/git/libmicrohttpd/ -WORKDIR gnurl - -RUN ./buildconf \ - && ./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 --prefix=$HOME/local \ - && make \ - && make install - -WORKDIR ../gnunet +WORKDIR /gnunet RUN ./bootstrap \ && ./configure --with-libgnurl=/usr/local/ \ && make \ && make install -WORKDIR ../libmicrohttpd +WORKDIR /libmicrohttpd RUN ./bootstrap \ && ./configure --disable-doc \