Add 'Jenkinsfile'

This commit is contained in:
fabrice 2019-03-15 13:57:40 +00:00
parent c8fd9ecdd1
commit 3f6cc544ca

10
Jenkinsfile vendored Normal file
View File

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