Created
July 29, 2016 13:24
-
-
Save domasx2/5750bcc351213e66cf70935ac7dc61fc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
WORKDIR /opt | |
RUN apt-get update && \ | |
apt-get install -y wget xz-utils && \ | |
wget https://nodejs.org/dist/v6.3.1/node-v6.3.1-linux-x64.tar.xz && \ | |
tar -xf node-v6.3.1-linux-x64.tar.xz && \ | |
ln -s /opt/node-v6.3.1-linux-x64/bin/node -t /usr/local/bin && \ | |
ln -s /opt/node-v6.3.1-linux-x64/bin/npm -t /usr/local/bin | |
WORKDIR / | |
CMD node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment