Skip to content

Instantly share code, notes, and snippets.

@fuzziebrain
Last active April 28, 2018 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuzziebrain/f7d2365a0ec81888f7dd2b2a435b1a0e to your computer and use it in GitHub Desktop.
Save fuzziebrain/f7d2365a0ec81888f7dd2b2a435b1a0e to your computer and use it in GitHub Desktop.
kscope18-truffle
#!/bin/bash
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
apt-get update
apt-get install -y docker-ce
systemctl enable docker
usermod -aG docker vagrant
# Install Node.js
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
apt-get update
apt-get install -y nodejs
apt-get install -y build-essential
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment