SES-79 #3

Merged
s426134 merged 10 commits from SES-79 into master 2020-12-02 20:39:22 +01:00
Showing only changes of commit e183f7e161 - Show all commits

View File

@ -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)