clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov 5e47e7a071 debug fix v2
2025-05-30 12:27:06 +03:00

9 lines
No EOL
208 B
Docker

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