fix(ci): move docker build outside of pipeline

This commit is contained in:
andreas 2019-05-13 21:40:31 +02:00
parent 9fd762f034
commit 77b838b397

10
Jenkinsfile vendored
View File

@ -12,11 +12,13 @@ pipeline {
success {
archiveArtifacts artifacts: 'target/debug/telegram-leetbot', fingerprint: true
}
}
}
node {
echo 'Starting docker image build'
script {
docker.build("northcode/telegram-leetbot")
}
}
}
}