10 lines
209 B
Plaintext
10 lines
209 B
Plaintext
|
|
#!/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 "$@"
|