Jenkinsfile 235 B

1234567891011
  1. /* Requires the Docker Pipeline plugin */
  2. pipeline {
  3. agent { docker { image 'python:3.10.7-alpine' } }
  4. stages {
  5. stage('build') {
  6. steps {
  7. sh 'python --version'
  8. }
  9. }
  10. }
  11. }