Upgrade docker images for Jenkins

This commit is contained in:
Shane Kilkelly 2018-04-16 15:13:27 +01:00
parent 0bff9d8c01
commit 1b3abe3b9a

View file

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