nummi/entrypoint.sh
Edgar P. Burkhart fc68368f3f
All checks were successful
Build and push Docker image / build (push) Successful in 1m36s
Fix entrypoint script path and update permissions for execution
2025-05-08 21:07:28 +02:00

5 lines
No EOL
171 B
Bash
Executable file

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