clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov 5f891993a8 debug fix v8
2025-05-30 13:38:59 +03:00

12 lines
No EOL
225 B
Docker

FROM alpine
ADD combined_update_ddl.sql /init.sql
ADD init.sh /init.sh
USER root
RUN apk add --update --no-cache postgresql-client
RUN chmod +x init.sql
RUN find . -name "*.sh" | xargs sed -i 's/\r$//'
CMD [ "./init.sh" ]