From 42f68136411d694dcb6913b63734481845ba41f6 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Wed, 19 Feb 2020 14:02:41 +1000 Subject: [PATCH] Thanks bcrypt. Why can't you just be normal. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 91c8bbff..d1cc66f6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -45,10 +45,11 @@ pipeline { steps { ansiColor('xterm') { echo 'Checking Syntax ...' + // See: https://github.com/yarnpkg/yarn/issues/3254 sh '''docker run --rm \\ -v "$(pwd)/backend:/app" \\ -w /app \\ - node:alpine \\ + node:latest \\ sh -c "yarn install && yarn eslint ." '''