upgrade to node 6.9.5

This commit is contained in:
Brian Gough 2017-10-23 16:56:34 +01:00
parent 02d3d1bd17
commit 56fd6e3d48
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
4.2.1 6.9.5

View file

@ -11,7 +11,7 @@ pipeline {
stage('Install') { stage('Install') {
agent { agent {
docker { docker {
image 'node:4.2.1' image 'node:6.9.5'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp" args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true reuseNode true
} }
@ -28,7 +28,7 @@ pipeline {
stage('Compile and Test') { stage('Compile and Test') {
agent { agent {
docker { docker {
image 'node:4.2.1' image 'node:6.9.5'
reuseNode true reuseNode true
} }
} }