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 699504f4e9
commit 8bfce7ccb6
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

@ -75,4 +75,4 @@ echo "Running seeds..."
bundle exec rails db:seed
# run passed commands
bundle exec ${@}
exec bundle exec "${@}"