taler-deployment

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

commit 8694a5420e10b5cbfdf5dbcceb3be71a9a0f21bf
parent f43ed91e00ed091cf137cec4751dc44fbe2c20ef
Author: MS <ms@taler.net>
Date:   Tue, 27 Sep 2022 19:18:42 +0200

Docker skeleton

Diffstat:
Adocker/hybrid/images/base/Dockerfile | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/docker/hybrid/images/base/Dockerfile b/docker/hybrid/images/base/Dockerfile @@ -0,0 +1,24 @@ +FROM debian:testing +RUN apt-get update + +RUN apt-get install -y autoconf autopoint libtool texinfo \ + libgcrypt-dev libidn11-dev zlib1g-dev libunistring-dev \ + libjansson-dev python3-pip git recutils libsqlite3-dev \ + libpq-dev postgresql libcurl4-openssl-dev libsodium-dev git \ + libqrencode-dev zip jq nodejs npm openjdk-17-jre nginx procps \ + curl python3-jinja2 + +RUN git clone git://git.gnunet.org/libmicrohttpd +RUN git clone git://git.gnunet.org/gnunet + +WORKDIR /libmicrohttpd +RUN ./bootstrap +RUN ./configure --disable-doc +RUN make install + +WORKDIR /gnunet +RUN ./bootstrap +RUN ./configure --enable-logging=verbose --disable-documentation +RUN make install + +RUN dpkg -L python3-jinja2