Remove 3 from python3 in entrypoint.sh

This commit is contained in:
Saqibur Rahman 2023-11-25 23:42:06 +06:00
parent eb5d95151c
commit 1ce203f2ea
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
set -e
python3 manage.py migrate --noinput
python3 manage.py collectstatic --noinput
python manage.py migrate --noinput
python manage.py collectstatic --noinput
exec "$@"