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

4 lines
141 B
Docker
Executable File

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