taler-deployment

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

Dockerfile (352B)


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