session-companion/Jenkinsfile

14 lines
307 B
Plaintext
Raw Normal View History

pipeline {
def app
stage('Build image') {
checkout scm
2020-12-02 19:17:49 +01:00
dir('SessionCompanion') {
app = docker.build("session-companion:${env.BUILD_ID}")
}
}
stage('Build app') {
docker.image("session-companion:${env.BUILD_ID}").withRun(-p 8080:8080)
}
}