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