diff --git a/Jenkinsfile b/Jenkinsfile index cc197c1..af40db6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,12 +8,14 @@ pipeline { stages { stage('Build') { steps { + sh 'ls' sh 'mvn -B -DskipTests -X clean package' } } stage('Build docker') { - agent any steps { + sh 'ls' + sh 'ls target' sh 'docker build -t ldeloff/servermonitorbot:latest .' } }