diff --git a/SessionCompanion/Jenkinsfile b/Jenkinsfile similarity index 63% rename from SessionCompanion/Jenkinsfile rename to Jenkinsfile index 2e1c547..9723b8e 100644 --- a/SessionCompanion/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,9 @@ pipeline { stage('Build image') { checkout scm - app = docker.build("session-companion:${env.BUILD_ID}") + dir('SessionCompanion') { + app = docker.build("session-companion:${env.BUILD_ID}") + } } stage('Build app') { docker.image("session-companion:${env.BUILD_ID}").withRun(-p 8080:8080)