Test new config

This commit is contained in:
Karol Górzyński 2020-12-03 17:26:07 +01:00
parent 294372a2e6
commit 734368df68

44
Jenkinsfile vendored
View File

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