7 lines
136 B
Docker
7 lines
136 B
Docker
FROM postgres:17
|
|
|
|
WORKDIR /db
|
|
|
|
# postgresql will execute the files in that folder after build
|
|
COPY build/* /docker-entrypoint-initdb.d/
|