Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. FROM ubuntu:latest
  2. RUN apt-get update && \
  3. apt-get install -y --allow-unauthenticated git wget && \
  4. wget https://github.com/yarnpkg/yarn/releases/download/v0.28.4/yarn_0.28.4_all.deb && \
  5. dpkg -i yarn_0.28.4_all.deb && \
  6. wget https://nodejs.org/download/release/v7.2.1/node-v7.2.1-linux-x64.tar.gz && \
  7. cd /usr/local && tar --strip-components 1 -xzf /node-v7.2.1-linux-x64.tar.gz && \
  8. node -v
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement