#!/bin/bash set -euo pipefail echo "[entrypoint] Starting Flask app on port 5001..." # Running the app directly via python # For a production setup, we would ideally use gunicorn/waitress, but sticking to what's in app.py for now. exec python3 /app/app.py