Feature/change entrypoint.sh to run app with main PID (#5019)

* Change entrypoint.sh to run app with main PID

* Update changelog
This commit is contained in:
Stefan Haun
2025-06-25 20:06:40 +02:00
committed by GitHub
parent 0fca29199d
commit ded0385da7
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Changed `node main` to `exec node main` in the `entrypoint.sh` file to improve the container signal handling
- Improved the language localization for Catalan (`ca`)
- Improved the language localization for Español (`es`)
- Improved the language localization for Turkish (`tr`)

View File

@ -9,4 +9,4 @@ echo "Seeding the database"
npx prisma db seed
echo "Starting the server"
node main
exec node main