SocialHelper/Jenkinsfile

10 lines
184 B
Groovy

pipeline {
agent { docker { image 'python:3.0.0' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}