Skip to content

Commit

Permalink
update/fix node version in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lipp committed Mar 30, 2016
1 parent 61cca37 commit 691ce8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN apt-get install ${LUA} ${LUA_DEV} wget libev-dev git-core unzip -y
RUN lua${LUA_SFX} -v
WORKDIR /
RUN wget --quiet https://github.com/keplerproject/luarocks/archive/v$LUAROCKS_VERSION.tar.gz -O $LUAROCKS_BASE.tar.gz
RUN wget --quiet https://nodejs.org/dist/latest/node-v4.0.0-linux-x64.tar.gz
RUN tar xf node-v4.0.0-linux-x64.tar.gz
ENV PATH /node-v4.0.0-linux-x64/bin:$PATH
RUN wget --quiet https://nodejs.org/dist/v4.4.1/node-v4.4.1-linux-x64.tar.gz
RUN tar xf node-v4.4.1-linux-x64.tar.gz
ENV PATH /node-v4.4.1-linux-x64/bin:$PATH
RUN node --version
RUN npm install -g ws
RUN tar zxpf $LUAROCKS_BASE.tar.gz
Expand Down

0 comments on commit 691ce8b

Please sign in to comment.