Created
October 4, 2013 08:37
-
-
Save smugen/6822811 to your computer and use it in GitHub Desktop.
docker nodejs runtime
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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