pipeline { agent any stages { stage('Copy to wwww') { steps { sh 'cp -r ./* /var/www/dj/' } } } }