Jupyterlab-Portfolio/Jenkinsfile

10 lines
181 B
Plaintext
Raw Normal View History

2019-03-15 13:57:40 +00:00
pipeline {
agent any
stages {
stage('build docker') {
steps {
sh 'docker build -t jupyterlab-portfolio .'
}
}
}
}