Browse Source

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

* Change entrypoint.sh to run app with main PID

* Update changelog
pull/5017/merge
Stefan Haun 6 days ago
committed by GitHub
parent
commit
ded0385da7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      docker/entrypoint.sh

1
CHANGELOG.md

@ -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`)

2
docker/entrypoint.sh

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

Loading…
Cancel
Save