5 lines
133 B
Docker
5 lines
133 B
Docker
FROM postgres:16-alpine
|
|
|
|
COPY init.sql /docker-entrypoint-initdb.d/01-init.sql
|
|
COPY seed.sql /docker-entrypoint-initdb.d/02-seed.sql
|