#!/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 "$@"