Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #69 from deNBI/feat/jenkins_bui
Browse files Browse the repository at this point in the history
Feat/jenkins bui
  • Loading branch information
sgiller authored Sep 28, 2018
2 parents c9d88b0 + d0bc436 commit 217fde1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
node {
def image
stage('Clone repository') {
checkout scm
}

stage('build image'){

image = docker.build("denbicloud/cloud-portal-client")
}
stage('push image'){
withDockerRegistry([ credentialsId: "docker1", url: "" ]) {
image.push("dev")
}
}
}

0 comments on commit 217fde1

Please sign in to comment.