[Chore] Build Docker Images on pushes to develop, main (#444)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#444
This commit is contained in:
2026-08-05 08:36:24 +12:00
parent 032ebc30a2
commit 2504d7045b
3 changed files with 79 additions and 1 deletions

9
entrypoint.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
set -e
if [ "${SKIP_DJANGO_SETUP:-false}" != "true" ]; then
python manage.py migrate --no-input
python manage.py collectstatic --no-input
fi
exec "$@"