eventcally/entrypoint.sh
2021-02-14 09:57:57 +01:00

10 lines
168 B
Bash
Executable File

#!/usr/bin/env bash
until flask db upgrade
do
echo "Waiting for postgres server to become available..."
sleep 2
done
gunicorn -c gunicorn.conf.py project:app