FROM debian:unstable RUN apt-get update && apt-get install -qqy \ git \ build-essential \ autoconf \ autopoint \ libtool \ libgcrypt20 \ libgcrypt20-dev \ libidn11-dev \ zlib1g-dev \ libunistring-dev \ libjansson-dev \ libpq-dev \ libmicrohttpd-dev \ libcurl4-gnutls-dev RUN git clone https://gnunet.org/git/gnunet/ \ && git clone https://gnunet.org/git/libmicrohttpd/ WORKDIR /gnunet RUN ./bootstrap \ && ./configure --with-libgnurl=/usr/local/ \ && make \ && make install WORKDIR /libmicrohttpd RUN ./bootstrap \ && ./configure --disable-doc \ && make \ && make install