11 lines
234 B
Groovy
11 lines
234 B
Groovy
/* Requires the Docker Pipeline plugin */
|
|
pipeline {
|
|
agent { docker { image 'python:3.10.7-alpine' } }
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'python --version'
|
|
}
|
|
}
|
|
}
|
|
} |