server: Fix exec args in entrypoint

This commit is contained in:
Gernot Schulz 2020-07-17 15:27:46 +02:00 committed by Finn Stutzenstein
parent 030378b48a
commit 683aed56bb
No known key found for this signature in database
GPG Key ID: 9042F605C6324654
1 changed files with 1 additions and 1 deletions

View File

@ -11,4 +11,4 @@ printf 'Executing server: "%s"\n' "$*"
# - daphne -b 0.0.0.0 -p 8000 openslides.asgi:application
# - gunicorn -w 4 -b 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker \
# openslides.asgi:application
exec $*
exec "$@"