taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

Dockerfile (402B)


      1 FROM taler/exchange
      2 
      3 RUN git clone git://taler.net/merchant ~/merchant
      4 
      5 WORKDIR $HOME/merchant
      6 
      7 RUN ./bootstrap \
      8     && ./configure CFLAGS='-ggdb -O0' \
      9       --with-gnunet=/usr/local \
     10       --with-exchange=/usr/local \
     11       --with-microhttpd=/usr/local \
     12     && make \
     13     && make install
     14 
     15 COPY ./entry_point.sh /
     16 COPY ./exchange_pub.txt /
     17 COPY ./exchange_url.txt /
     18 
     19 ENTRYPOINT ["/entry_point.sh"]