taler-deployment

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

commit aecc1ab35271605825fa0b0a6a06498f58214aca
parent b52a3b284a0cd485680d22c8ff6af7ae303be5c7
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Sun, 13 Nov 2016 23:08:51 +0100

building gnurl in docker base

Diffstat:
Mdocker/base/Dockerfile | 15+++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/docker/base/Dockerfile b/docker/base/Dockerfile @@ -11,6 +11,17 @@ RUN apt-get update && apt-get install -y \ zlib1g-dev \ libunistring-dev \ libjansson-dev \ - libpq-dev + libpq-dev \ + libmicrohttpd-dev \ + libcurl-dev -RUN git clone https://gnunet.org/gnunet/ +RUN git clone https://gnunet.org/git/gnunet/ \ + && git clone https://gnunet.org/git/libmicrohttpd/ \ + && git clonf git://taler.net/gnurl/ + +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