python hello world jenkins

Solutions on MaxInterview for python hello world jenkins by the best coders in the world

showing results for - "python hello world jenkins"
Clara
20 Feb 2018
1pipeline {
2    agent { docker { image 'python:3.5.1' } }
3    stages {
4        stage('build') {
5            steps {
6                sh 'python --version'
7            }
8        }
9    }
10}
similar questions
queries leading to this page
python hello world jenkins