#!/bin/bash set -euo pipefail echo "[entrypoint] Starting gunicorn on port 5001..." exec gunicorn \ --bind 0.0.0.0:5001 \ --workers "${GUNICORN_WORKERS:-2}" \ --timeout "${GUNICORN_TIMEOUT:-120}" \ --access-logfile - \ app:app