eventcally/entrypoint.sh
2020-12-22 17:16:02 +01:00

11 lines
198 B
Bash
Executable File

#!/usr/bin/env bash
until flask db upgrade
do
echo "Waiting for postgres server to become available..."
sleep 2
done
BIND_PORT=${PORT:-5000}
gunicorn --bind 0.0.0.0:$BIND_PORT project:app