eventcally/entrypoint.sh
2020-12-22 15:09:13 +01:00

10 lines
168 B
Bash

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