# Use posgres as base image
FROM postgres 

# Set postgres password
ENV POSTGRES_PASSWORD postgres 

# Set postgres db name
ENV POSTGRES_DB vospace_testdb 

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