Execute postinstall in docker entrypoint

a16111830833f948984840b2ad04a4bd331abb72

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -0Showing whitespace changes
docker/docker-entrypoint.sh+3 -0
@@ -5,5 +5,8 @@ if [ ! -e "config/config.yaml" ]; then
55 cp -r "default/config.yaml" "config/config.yaml"
66fi
77
8+# Execute postinstall to auto-populate config.yaml with missing values
9+npm run postinstall
10+
811# Start the server
912exec node server.js --listen "$@"