Files
ht-docker-node/image_support_files/bash-with-nvm
T

10 lines
209 B
Bash
Raw Normal View History

#!/bin/bash
set -e
# Load nvm before executing Dockerfile RUN commands
export NVM_DIR="/usr/local/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
# Execute the command passed to this wrapper
eval "$@"