# create Procfile that forces gunicorn to run app:app cat > Procfile <<'PROC' web: gunicorn app:app --bind 0.0.0.0:7860 --workers 1 PROC # show Procfile contents to confirm echo "----- Procfile -----" cat Procfile