Added Jenkinsfile.

Does just call build.sh.
This commit is contained in:
Marcel M. Otte 2018-01-16 15:19:12 +01:00
parent a16c7b0f3c
commit c1728d4993
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,7 @@
node ('main') {
stage('docker') {
sh '''
sh build.sh
'''
}
}