Commit 4f329a19 by Patryk Czarnik

Jenkinsfile

parents
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'python:3.14.2-alpine3.23' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment