taler-deployment

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

commit 1b44ae31502c30c4c12d5cc0521c2b14aa8d1218
parent bc3667abde81eb479205454962ad7a7252c4f838
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 14 Nov 2016 00:48:12 +0100

merchant container

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

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