Olaf Bohlen
2020-09-23 2aa544a22485d9563e3742c840c99237305b5ffd
commit | author | age
2aa544 1 pipeline {
OB 2     #agent { docker { image 'python:3.5.1' } }
3     stages {
4         stage('build') {
5             steps {
6                 sh 'python --version'
7             }
8         }
9     }
10 }