From 5fb0cc5faba0c44eb6e17ef9ad6103fbd15c6c3b Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 11 Jan 2022 11:17:19 +1000 Subject: [PATCH] No need to symlink python, done in base image now --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 860c88d0..1b744692 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,14 +62,14 @@ pipeline { stage('Backend') { steps { echo 'Checking Syntax ...' - sh 'docker pull node:latest' + sh 'docker pull nginxproxymanager/nginx-full:certbot-node' // See: https://github.com/yarnpkg/yarn/issues/3254 sh '''docker run --rm \\ -v "$(pwd)/backend:/app" \\ -v "$(pwd)/global:/app/global" \\ -w /app \\ - node:latest \\ - sh -c "ln -s /usr/bin/python3 /usr/bin/python && yarn install && yarn eslint . && rm -rf node_modules" + nginxproxymanager/nginx-full:certbot-node \\ + sh -c "yarn install && yarn eslint . && rm -rf node_modules" ''' echo 'Docker Build ...'