From 56fd6e3d4805307fc88e013bdce4e1845b1c4fd4 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Mon, 23 Oct 2017 16:56:34 +0100 Subject: [PATCH] upgrade to node 6.9.5 --- services/document-updater/.nvmrc | 2 +- services/document-updater/Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/document-updater/.nvmrc b/services/document-updater/.nvmrc index d87edbfc10..26ec038c18 100644 --- a/services/document-updater/.nvmrc +++ b/services/document-updater/.nvmrc @@ -1 +1 @@ -4.2.1 \ No newline at end of file +6.9.5 \ No newline at end of file diff --git a/services/document-updater/Jenkinsfile b/services/document-updater/Jenkinsfile index 4ffd642356..80f552dbea 100644 --- a/services/document-updater/Jenkinsfile +++ b/services/document-updater/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { stage('Install') { agent { docker { - image 'node:4.2.1' + image 'node:6.9.5' args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp" reuseNode true } @@ -28,7 +28,7 @@ pipeline { stage('Compile and Test') { agent { docker { - image 'node:4.2.1' + image 'node:6.9.5' reuseNode true } }