Files
eggs-backend/scripts/entrypoint.sh
husanjon 24f6fe42cc
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m54s
restore composer.json, add mysqli extension
2026-04-15 15:15:05 +05:00

12 lines
257 B
Bash

#!/usr/bin/bash
echo "Installing setuptools..."
/opt/venv/bin/python -m pip install setuptools > /dev/null 2>&1
python3 manage.py collectstatic --no-input
python3 manage.py migrate --no-input
gunicorn config.wsgi:application --bind 0.0.0.0:8000
exit $?