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

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

WORKDIR $HOME/exchange

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

COPY ./entry_point.sh /

ENTRYPOINT ["/entry_point.sh"]