From 1ec95096d5b8953818c720582ab2e589575cc718 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Sun, 2 Jan 2022 21:24:16 +1000 Subject: [PATCH] Ensure backend build is pulling node:latest first --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index a0f21e10..860c88d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,6 +62,7 @@ pipeline { stage('Backend') { steps { echo 'Checking Syntax ...' + sh 'docker pull node:latest' // See: https://github.com/yarnpkg/yarn/issues/3254 sh '''docker run --rm \\ -v "$(pwd)/backend:/app" \\