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
5 cp -r "default/config.yaml" "config/config.yaml"5 cp -r "default/config.yaml" "config/config.yaml"
6fi6fi
77
8# Execute postinstall to auto-populate config.yaml with missing values
9npm run postinstall
10
8# Start the server11# Start the server
9exec node server.js --listen "$@"12exec node server.js --listen "$@"