fix: use exec in entrypoints to ensure bundler receives signals

This commit is contained in:
Aljoscha Grebe 2025-01-18 00:11:34 +01:00
parent 6e0a514444
commit b75e335a54
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -33,4 +33,4 @@ done
echo "✅ PostgreSQL is ready!"
# run sidekiq
bundle exec sidekiq
exec bundle exec sidekiq

View file

@ -52,4 +52,4 @@ bundle exec rake data:migrate
# fi
# run passed commands
bundle exec ${@}
exec bundle exec "${@}"