Skip to content

Instantly share code, notes, and snippets.

@iynere
Last active September 1, 2017 19:36
Show Gist options
  • Save iynere/434e96cdc4214dea01174252e69c723f to your computer and use it in GitHub Desktop.
Save iynere/434e96cdc4214dea01174252e69c723f to your computer and use it in GitHub Desktop.
FROM circleci/node:6-browsers
USER root
RUN rm -f /usr/local/bin/node /usr/local/bin/nodejs /usr/local/bin/npm /usr/local/share/man/man1/node.1 /usr/local/share/systemtap/tapset/node.stp
RUN rm -rf /usr/local/lib/node_modules /usr/local/include/node /usr/local/share/doc/node
RUN wget https://nodejs.org/download/release/v6.1.0/node-v6.1.0.tar.gz
RUN tar xvf node-v6.1.0.tar.gz && rm node-v6.1.0.tar.gz
RUN cd node-v6.1.0 && ./configure && make -j4 && make doc && make install
RUN rm -r node-v6.1.0
USER circleci
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment