fix(ci): add missing script block

This commit is contained in:
andreas 2019-05-13 21:33:26 +02:00
parent 78010971ea
commit 575675007a

6
Jenkinsfile vendored
View File

@ -8,7 +8,11 @@ pipeline {
} }
stage('docker') { stage('docker') {
steps { steps {
docker.build("northcode/telegram-leetbot") echo 'Starting docker image build'
script {
docker.build("northcode/telegram-leetbot")
}
} }
} }
} }