10 lines
No EOL
220 B
Docker
10 lines
No EOL
220 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.sh
|
|
RUN find . -name "*.sh" | xargs sed -i 's/\r$//'
|
|
|
|
ENTRYPOINT [ "./init.sh" ] |