aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2017-06-27 13:53:19 -0700
committerGravatar murgatroid99 <mlumish@google.com>2017-06-27 13:54:22 -0700
commit7ad758cd846bb6f15d3e655ce148ccc099a041e4 (patch)
tree02a4989eb91a4fe19cd3d1640bc56a0f3c3db143 /templates
parent71a78e92cb9f6af405e6f80c9a31c408c4025095 (diff)
Make various scripts use the same version of Node
Diffstat (limited to 'templates')
-rw-r--r--templates/tools/dockerfile/node_deps.include5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/tools/dockerfile/node_deps.include b/templates/tools/dockerfile/node_deps.include
index 7855fbfee3..d0d1b6b49a 100644
--- a/templates/tools/dockerfile/node_deps.include
+++ b/templates/tools/dockerfile/node_deps.include
@@ -5,7 +5,8 @@
RUN touch .profile
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash
# Install all versions of node that we want to test
-RUN /bin/bash -l -c "nvm install 0.12 && npm config set cache /tmp/npm-cache"
RUN /bin/bash -l -c "nvm install 4 && npm config set cache /tmp/npm-cache"
RUN /bin/bash -l -c "nvm install 5 && npm config set cache /tmp/npm-cache"
-RUN /bin/bash -l -c "nvm alias default 4" \ No newline at end of file
+RUN /bin/bash -l -c "nvm install 6 && npm config set cache /tmp/npm-cache"
+RUN /bin/bash -l -c "nvm install 8 && npm config set cache /tmp/npm-cache"
+RUN /bin/bash -l -c "nvm alias default 8" \ No newline at end of file