pipeline { agent any tools { nodejs "node" } stages { stage('NPM Install') { steps { sh 'npm install' } } stage('Build Dockerfile') { steps { sh 'docker build . -t schedulord-frontend' } } } }