clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov d4820eb459 debug fix v11
2025-05-30 16:14:02 +03:00

12 lines
No EOL
234 B
Docker

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