SocialHelper/Jenkinsfile

17 lines
255 B
Plaintext
Raw Normal View History

2020-12-03 13:55:48 +01:00
node {
def app
stage('Clone repository') {
checkout scm
}
stage('Build image') {
app = docker.build("hellonode")
}
stage('Test image') {
app.inside {
sh 'echo "Tests passed"'
2020-12-03 13:53:44 +01:00
}
}
}