summaryrefslogtreecommitdiff
path: root/docker/base/Dockerfile
blob: 026d3a63f33dedd94b0242a184e75d5c0caeda9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM debian:stable

RUN apt-get update && apt-get install -qqy \
      git \
      build-essential \
      autoconf \
      autopoint \
      libtool \
      libgcrypt20 \
      libidn11-dev \
      zlib1g-dev \
      libunistring-dev \
      libjansson-dev \
      libpq-dev \
      libmicrohttpd-dev

RUN git clone https://gnunet.org/git/gnunet/ \
    && git clone https://gnunet.org/git/libmicrohttpd/ \
    && git clone 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