summaryrefslogtreecommitdiff
path: root/docker/merchant/Dockerfile
blob: b8d682b0f3b6292d51772ff2a6e33df7919a4d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 /
COPY ./exchange_pub.txt /
COPY ./exchange_url.txt /

ENTRYPOINT ["/entry_point.sh"]