taler-deployment

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

Dockerfile (126B)


      1 FROM debian:unstable
      2 
      3 RUN apt-get update && apt-get install -qqy postgresql
      4 
      5 COPY ./dbstart.sh /
      6 
      7 ENTRYPOINT ["./dbstart.sh"]