From f235e5690eae60d2e0a354a03c07efec76348bc9 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Wed, 29 Nov 2023 16:19:55 +0300 Subject: [PATCH] entrypoint: remove uwsgi's -c option --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1e52962..13e980f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -5,7 +5,7 @@ set -eu if [ "$IS_WEB" = "true" ]; then python3 generate_uswgi_config.py - exec uwsgi -c /tmp/uwsgi.ini + exec uwsgi /tmp/uwsgi.ini fi exec python main.py $@