From 57821f61f8b99f3a0391a644ddaea0f53b8424ea Mon Sep 17 00:00:00 2001 From: nicolas <821778+novalic@users.noreply.github.com> Date: Mon, 3 Oct 2022 00:46:34 -0300 Subject: [PATCH] config(uwsgi): add missing template rendering in entrypoint --- docker/entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 5e496b1..39a8d0f 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -1,4 +1,5 @@ #!/bin/sh +/usr/bin/envsubst '${UWSGI_WORKERS}${UWSGI_THREADS}' < /etc/uwsgi.ini.template > /etc/uwsgi.ini /env/bin/python /app/manage.py migrate --noinput