Fix arg passing to entrypoint

This commit is contained in:
Stefan Bethke 2023-12-03 14:31:24 +01:00
parent 0e0f85cff9
commit cf9a811c5e
2 changed files with 2 additions and 2 deletions

View file

@ -10,4 +10,4 @@ RUN true \
USER pretixuser
ENTRYPOINT /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

View file

@ -44,4 +44,4 @@ broker=${CELERY_BROKER}
EOF
fi
exec pretix $@
exec pretix "$@"