From 25e321688237c25f2403e361b7f50e8ffd49bd62 Mon Sep 17 00:00:00 2001 From: creylopez Date: Thu, 16 Jan 2025 09:34:07 +0000 Subject: [PATCH] Actualizar 'src/config/entrypoint.sh' --- src/config/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/entrypoint.sh b/src/config/entrypoint.sh index e103c9f..c817d97 100644 --- a/src/config/entrypoint.sh +++ b/src/config/entrypoint.sh @@ -2,7 +2,7 @@ RUN_PORT="8000" /opt/venv/bin/python manage.py migrate --no-input -/opt/venv/bin/python manage.py collectstatic +/opt/venv/bin/python manage.py collectstatic --no-input /opt/venv/bin/gunicorn mysite.wsgi:application --bind "0.0.0.0:${RUN_PORT}" --daemon