pipeline { agent { docker { image 'node:13.10-alpine' } } stages { stage('setup') { sh npm install sh export PATH=$PATH:node_modules/.bin } stage('build') { steps { sh 'ng build --prod' } } } }