Hello,
I’m trying to run a custom build script for my Django app by setting the build command to “bash web_build.sh”. The script is located at the root directory and contains the following:
#!/usr/bin/env bash
set -o errexit
pip install --upgrade pip
pip install -r requirements_py311.txt
pip install --upgrade --no-cache-dir git+https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/cedielabs/minutes-extraction.git@v0.1.0
python manage.py collectstatic --no-input
python manage.py migrate
However, it fails with an “ERROR: No buildpack groups passed detection”. Could you please help me solve this issue?