From 04f6fa8d846e01719443fcb40b5478e062b891dd Mon Sep 17 00:00:00 2001 From: jessikitty Date: Thu, 4 Jun 2026 10:08:24 +1000 Subject: [PATCH] fix: remove crontab add from entrypoint, handled by dedicated cron service in compose --- entrypoint.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index e37cc46..e65bbf2 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,9 +13,6 @@ python manage.py migrate --noinput echo "Collecting static files..." python manage.py collectstatic --noinput -echo "Setting up crontab..." -python manage.py crontab add - echo "Starting Gunicorn..." exec gunicorn busManager.wsgi:application \ --bind 0.0.0.0:8000 \