py_test/Jenkinsfile
2025-10-29 15:40:52 -03:00

12 lines
204 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
sh 'docker build -t my-python-app .'
}
}
}
}