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

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

WORKDIR $HOME/merchant

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

COPY ./entry_point.sh /

ENTRYPOINT ["/entry_point.sh"]