Made entrypoint.sh & create_pg_pass.sh executable and added idle process for entrypoint

This commit is contained in:
Clemens Geibel 2020-11-19 13:11:43 +01:00
parent dea68fd793
commit 78f6dc9e5f
2 changed files with 8 additions and 2 deletions

View file

@ -25,3 +25,4 @@ RUN apt-get -y install postgresql
# Prepare Entrypoint Script
ADD resources /tmp/resources
RUN chmod 700 /tmp/resources/entrypoint.sh /tmp/resources/create_pg_pass.sh

View file

@ -1 +1,6 @@
./create_pg_pass.sh
# Idle process
while true; do
sleep 500000
done