summaryrefslogtreecommitdiff
path: root/docker/merchant/Dockerfile
blob: 6385c962cb1f0b7783de2ec6150a9bb3889986ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM taler/exchange

RUN git clone git://taler.net/merchant /merchant

WORKDIR /merchant

RUN ./bootstrap \
    && ./configure CFLAGS='-ggdb -O0' \
      --with-gnunet=/usr/local \
      --with-exchange=/usr/local \
      --with-microhttpd=/usr/local \
    && make \
    && make install