session-companion/Jenkinsfile

42 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-12-09 19:06:43 +01:00
//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 {
agent {
docker {
2020-12-09 19:09:22 +01:00
image 'kargor8/sess-comp-base:v1'
2020-12-09 19:06:43 +01:00
}
}
environment {
DOTNET_CLI_HOME = '/tmp/App'
}
stages {
stage('Build app') {
steps {
dir('SessionCompanion') {
2020-12-09 19:17:14 +01:00
sh 'npm cache clean --force'
2020-12-09 19:06:43 +01:00
sh 'dotnet build'
}
}
}
}
}