]> git.proxmox.com Git - mirror_xterm.js.git/blob - entrypoint.sh
Improve the Docker image
[mirror_xterm.js.git] / entrypoint.sh
1 #! /bin/bash
2
3 # Install Node modules, if the `node_modules` directory does not exist
4 if [[ ! -d node_modules ]]; then
5 npm install;
6 fi
7
8 exec "$@"