Add 'Jenkinsfile'

This commit is contained in:
fabrice 2018-12-13 16:57:48 +00:00
parent 9a07e40e44
commit 356967a27f

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('build docker') {
steps {
sh 'docker build -t jupyterlab .'
}
}
}
}