Skip to content

Commit

Permalink
testing 6.10.2-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Santana committed Apr 1, 2017
1 parent 039b052 commit 3f2b454
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions core/nodejs6Action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
FROM nodejsactionbase

# based on https://github.com/nodejs/docker-node
ENV NODE_VERSION 6.10.1
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
#ENV NODE_VERSION 6.10.2
#ENV NODE_URL_DOWNLOAD https://nodejs.org/dist
#RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
# && tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
# && rm "node-v$NODE_VERSION-linux-x64.tar.gz"

ENV NODE_VERSION 6.10.2-rc.1
ENV NODE_URL_DOWNLOAD https://nodejs.org/download/rc

RUN curl -SLO "$NODE_URL_DOWNLOAD/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
&& rm "node-v$NODE_VERSION-linux-x64.tar.gz"


# workaround for this: https://github.com/npm/npm/issues/9863
RUN cd $(npm root -g)/npm \
&& npm install fs-extra \
Expand Down

0 comments on commit 3f2b454

Please sign in to comment.