Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Karolina Górecka 2022-11-24 17:08:07 +01:00
parent b2532a84e6
commit fa278955d9

11
Jenkinsfile vendored
View File

@ -0,0 +1,11 @@
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'python:3.10.7-alpine' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}