clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov f2ebe5ab3e debug fix v4
2025-05-30 12:56:45 +03:00

7 lines
No EOL
228 B
Docker

FROM alpine
ADD combined_update_ddl.sql /init.sql
RUN apk add --update --no-cache postgresql-client
CMD [ "sh", "-c", "ls -la && psql --version && psql -U clearing -h db -p 5432 -d clearing -f init.sql && tail -f /dev/null" ]