1
0
mirror of https://github.com/bigbluebutton/docker.git synced 2025-05-15 04:54:37 +02:00
docker/mod/html5-dev/entrypoint.sh
2024-11-25 17:19:26 +01:00

11 lines
133 B
Bash
Executable File

set -e
# enable nvm
. /root/.nvm/nvm.sh
if [ -n "$1" ]; then
exec "$@"
else
npm install
npm start -- --host 0.0.0.0
fi