From 40bd6af0bccc45bdd7c7c649dbcd4712a2b474c8 Mon Sep 17 00:00:00 2001 From: Bryce Kahle Date: Fri, 15 Sep 2017 17:36:42 -0400 Subject: [PATCH] Get latest released version of nvm --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b152ae7e..3a101900 100644 --- a/Dockerfile +++ b/Dockerfile @@ -144,7 +144,10 @@ RUN curl -o- -L https://yarnpkg.com/install.sh > /usr/local/bin/yarn-installer.s # Install node.js USER buildbot -RUN git clone https://github.com/creationix/nvm.git ~/.nvm +RUN git clone https://github.com/creationix/nvm.git ~/.nvm && \ + cd ~/.nvm && \ + git checkout v0.33.4 && \ + cd / ENV ELM_VERSION=0.17.1 ENV YARN_VERSION=0.18.1