debug fix v8

This commit is contained in:
Ivan Nikolaev-Axenov 2025-05-30 13:38:59 +03:00
parent 1ebb217897
commit 5f891993a8
2 changed files with 4 additions and 2 deletions

View file

@ -3,8 +3,10 @@ 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 [ "sh", "-c", "./init.sh" ]
CMD [ "./init.sh" ]

View file

@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
echo "PSQL version: " && psql --version