SES-79 Try different approach with Jenkinsfile

This commit is contained in:
Karol Górzyński 2020-12-02 19:41:09 +01:00
parent e72f038c21
commit ddfb2bad7c
1 changed files with 26 additions and 7 deletions

29
Jenkinsfile vendored
View File

@ -1,13 +1,32 @@
//pipeline {
// stages {
// stage('Build image') {
// checkout scm
// dir('SessionCompanion') {
// docker.build("session-companion:${env.BUILD_ID}")
// }
// }
// stage('Build app') {
// docker.image("session-companion:${env.BUILD_ID}").withRun('-p 5050:5050')
// }
// }
//}
pipeline {
agent any
stages {
stage('Build image') {
checkout scm
dir('SessionCompanion') {
docker.build("session-companion:${env.BUILD_ID}")
steps {
echo "Building docker image"
script {
def customImage = docker.build("session-companion:${env.BUILD_ID}")
customImage.withRun('-p 5050:5050')
}
}
}
stage('Build app') {
docker.image("session-companion:${env.BUILD_ID}").withRun('-p 5050:5050')
stage('Delete image') {
steps {
sh "docker rmi session-companion:${env.BUILD_ID}"
}
}
}
}