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

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

# Needs the container running (not done by 'docker-compose run').
RUN su -c "createuser --host=dbcontainer root" postgres \
    && su -c "createdb --host=dbcontainer talertest" postgres