#!/bin/sh # Install ODBC driver ./install_odbc.sh # Start Dash and run in background echo "Starting Dash app..." if [ -f "/app/env.sh" ]; then . "/app/env.sh" echo "env.sh has been sourced." fi poetry run gunicorn app:server -b 0.0.0.0:8000