entrypoint: remove uwsgi's -c option

This commit is contained in:
norohind 2023-11-29 16:19:55 +03:00 committed by GitHub
parent 9a1b8c63c7
commit f235e5690e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 $@