blob: 5d76b634de724fe9d87ac45ff2bd282c072cee21 (
plain)
1
2
3
4
5
6
|
FROM postgres:latest AS build
ADD ./init-database.sql /docker-entrypoint-initdb.d
RUN chmod 644 /docker-entrypoint-initdb.d/init-database.sql
EXPOSE 5432
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "postgres" ]
|