Files
kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile
2025-11-23 18:58:51 +01:00

4 lines
131 B
Docker
Executable File

FROM postgres
COPY drop.sql /tmp
CMD /usr/bin/psql postgres://$DB_USER:$DB_PASSWORD@$DB_SERVERNAME:$DB_PORTNUMBER -f /tmp/drop.sql