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 ...'