Seems like you are combining a file path for FLASK_APP with running a file using command. When FLASK_APP is set to a full path, Flask expects that path to point to a Python file (e.g., app.py) or package that contains the application instance.
โCorrect FLASK_APP and command
โAdjust your app.yaml file to only point FLASK_APP to the directory containing your main Python file (app.py), and then set the command to run the file directly