Hi @Tyler Suard
Apologize for any inconvenience caused on this.
In your current GitHub Actions workflow, you're creating a virtual environment (venv) with:
- name: Create and start virtual environment
run: |
python -m venv venv
source venv/bin/activate
Even though you're using Python 3.13 in the workflow, this local venv is not portable and should not be deployed to Azure App Service. Azure uses its own build system (Oryx) and runtime environment to run your app, and it expects to create its own virtual environment using your requirements.txt.
Do not include the venv/ or antenv/ folder in your deployed code.
Just deploy your code and requirements.txt
,and let Azure handle dependency installation at runtime.