Update 'Jenkinsfile'

This commit is contained in:
Igor Misiorny 2019-11-23 16:46:40 +00:00
parent bfdcb99493
commit a8516447e4
1 changed files with 0 additions and 8 deletions

8
Jenkinsfile vendored
View File

@ -2,22 +2,14 @@ node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("getintodevops/hellonode")
}
stage('Test image') {
/* Ideally, we would run a test framework against our image.
* For this example, we're using a Volkswagen-type approach ;-) */
app.inside {
sh 'echo "Tests passed"'
}