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/4705/merge
Stefan Haun
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
docker/entrypoint.sh
|
|
@ -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`) |
|
|
|
|
|
@ -9,4 +9,4 @@ echo "Seeding the database" |
|
|
|
npx prisma db seed |
|
|
|
|
|
|
|
echo "Starting the server" |
|
|
|
node main |
|
|
|
exec node main |
|
|
|