musik/entrypoint.sh
Edgar P. Burkhart fd09bf8aa3
All checks were successful
Build and push Docker image / build (push) Successful in 2m14s
Add Docker support with build and push workflow, and configure Gunicorn for application serving
2025-06-14 16:43:38 +02:00

5 lines
166 B
Bash
Executable file

#!/usr/bin/env sh
cd /app
uv run manage.py collectstatic --noinput
uv run manage.py migrate --noinput
uv run gunicorn --bind :8000 --workers 2 musik.wsgi:application