clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov 1ebb217897 debug fix v7
2025-05-30 13:30:26 +03:00

10 lines
No EOL
226 B
Docker

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