clearing/clr_test/db-updater/Dockerfile

7 lines
No EOL
179 B
Docker

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