clearing/clr_test/db-updater/Dockerfile
Ivan Nikolaev-Axenov 04a9e11a67 debug fix v10
2025-05-30 16:03:23 +03:00

12 lines
No EOL
226 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 +x init.sql
RUN find . -name "*.sh" | xargs sed -i 's/\r$//'
CMD [ "./init.sh" ]