diff options
author | Craig Tiller <ctiller@google.com> | 2017-07-12 15:44:10 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-07-12 15:44:10 -0700 |
commit | 1cb30c2764485864d78b226a5fc8a6f1edcb3614 (patch) | |
tree | 198b90a32d0ff905ec0728e9d4a167fbd3e4054a /tools/dockerfile/test/multilang_jessie_x64/Dockerfile | |
parent | 8551e4d6876de66f01f83558433e463f859eef74 (diff) | |
parent | f2e15655bc6eaa4bbe66234946056856ede090da (diff) |
Merge github.com:grpc/grpc into min_stack
Diffstat (limited to 'tools/dockerfile/test/multilang_jessie_x64/Dockerfile')
-rw-r--r-- | tools/dockerfile/test/multilang_jessie_x64/Dockerfile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/dockerfile/test/multilang_jessie_x64/Dockerfile b/tools/dockerfile/test/multilang_jessie_x64/Dockerfile index 2d22bb567b..b7373b5d9c 100644 --- a/tools/dockerfile/test/multilang_jessie_x64/Dockerfile +++ b/tools/dockerfile/test/multilang_jessie_x64/Dockerfile @@ -81,10 +81,11 @@ RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev c 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" +RUN /bin/bash -l -c "nvm install 4 && npm config set cache /tmp/npm-cache && npm install -g npm" +RUN /bin/bash -l -c "nvm install 5 && npm config set cache /tmp/npm-cache && npm install -g npm" +RUN /bin/bash -l -c "nvm install 6 && npm config set cache /tmp/npm-cache && npm install -g npm" +RUN /bin/bash -l -c "nvm install 8 && npm config set cache /tmp/npm-cache && npm install -g npm" +RUN /bin/bash -l -c "nvm alias default 8" #================= # PHP dependencies |