# Use posgres as base image
FROM library/postgres:12 

# Set postgres password
ENV POSTGRES_PASSWORD postgres 

# Set postgres db name
ENV POSTGRES_DB vospace_testdb 

# Copy setup scripts into the right folder
COPY *.sql /docker-entrypoint-initdb.d/
