palindrome-django/web/entrypoint.sh

8 lines
142 B
Bash
Raw Normal View History

2021-03-23 20:25:45 +00:00
#!/bin/bash
python manage.py collectstatic --noinput
python manage.py makemigrations --noinput
python manage.py migrate --noinput
exec "$@"