summaryrefslogtreecommitdiff
path: root/docker/debug/client/Dockerfile
blob: 90841c7b7e86b502efe53d0786e0ad87ee316925 (plain)
1
2
3
4
5
6
7
8
FROM debian:unstable


RUN apt-get update && apt-get install -qqy \
    postgresql

RUN su -c "createuser --host=dbcontainer root" postgres \
    && su -c "createdb --host=dbcontainer talertest" postgres