Skip to content

Instantly share code, notes, and snippets.

@smugen
Created October 4, 2013 08:37
Show Gist options
  • Save smugen/6822811 to your computer and use it in GitHub Desktop.
Save smugen/6822811 to your computer and use it in GitHub Desktop.
docker nodejs runtime
FROM ubuntu:latest
# install nodejs
ADD http://nodejs.org/dist/v0.10.20/node-v0.10.20-linux-x64.tar.gz /tmp/
RUN cd /tmp && tar xzf node-v0.10.20-linux-x64.tar.gz --strip-components=1 -C "/usr"
# install git
RUN apt-get update && apt-get install -y git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment