summaryrefslogtreecommitdiff
path: root/docker/merchant/Dockerfile
blob: d6e4ccc84180838f51a3ac3f6c828afd1d5149e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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