WC/Jenkinsfile

17 lines
269 B
Groovy

node {
def app
stage('Clone repository') {
checkout scm
}
stage('Build image') {
app = docker.build("getintodevops/hellonode")
}
stage('Test image') {
app.inside {
sh 'echo "Tests passed"'
}
}
}