Skip to content

Instantly share code, notes, and snippets.

@foxx
Created February 6, 2015 16:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foxx/0c4f02de6e3906fa1c98 to your computer and use it in GitHub Desktop.
Save foxx/0c4f02de6e3906fa1c98 to your computer and use it in GitHub Desktop.
Code snippet for docker post
# This will not work
RUN sudo su - app -c "curl https://raw.githubusercontent.com/creationix/nvm/v0.17.3/install.sh | bash"
# This will work
RUN sudo su - app -c "curl https://raw.githubusercontent.com/creationix/nvm/v0.17.3/install.sh | HOME=/home/app bash"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment