Aggiunto build system docker
Briq/multiparty-meeting/pipeline/head This commit looks good

This commit is contained in:
2020-05-13 12:36:47 +02:00
parent 558129fe40
commit 3c3f02d557
18 changed files with 3616 additions and 0 deletions
Vendored
+15
View File
@@ -0,0 +1,15 @@
node {
stage('Checkout') {
checkout scm
}
stage('Build docker') {
customImage = docker.build("public/mm:${env.BUILD_ID}")
}
stage('Push to registry') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
docker.withRegistry('https://docker.briq.it', 'briq-docker-cred') {
customImage.push("${env.BRANCH_NAME}")
}
}
}
}