taler-deployment

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

commit fab902ea13383da7802ab75ffeb2f0fb6f51870e
parent 731019f962e3730be4c976f7e395dbc62bf61b15
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 14 Nov 2016 00:20:10 +0100

exchange container

Diffstat:
Adocker/exchange/Dockerfile | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/docker/exchange/Dockerfile b/docker/exchange/Dockerfile @@ -0,0 +1,13 @@ +FROM taler/base + +RUN git clone git://taler.net/exchange + +WORKDIR exchange + +RUN ./bootstrap \ + && ./configure CFLAGS='-ggdb -O0' \ + --with-libgnurl=/usr/local \ + --with-microhttpd=/usr/local \ + --with-gnunet=/usr/local \ + make \ + make install