Improve Docker setup and reduce memory usage of production containers (#338)

This commit is contained in:
Fynn Petersen-Frey 2022-07-13 14:42:00 +02:00 committed by GitHub
parent ae7e582ec8
commit bece6253d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 26 deletions

View file

@ -1 +1,6 @@
npm run build && node /usr/src/app/build/index.js
npm run build
if [ `id -u` -eq 0 ] && [ -n "$PUID" ] && [ -n "$PGID" ]; then
exec setpriv --reuid $PUID --regid $PGID --clear-groups node /usr/src/app/build/index.js
else
node /usr/src/app/build/index.js
fi