Jupyterlab-Portfolio/Jenkinsfile
2019-03-15 13:57:40 +00:00

10 lines
181 B
Groovy

pipeline {
agent any
stages {
stage('build docker') {
steps {
sh 'docker build -t jupyterlab-portfolio .'
}
}
}
}