2025-10-29 13:11:30 -03:00
|
|
|
pipeline {
|
|
|
|
|
agent any
|
|
|
|
|
|
|
|
|
|
stages {
|
2025-10-29 15:40:52 -03:00
|
|
|
stage('Build') {
|
2025-10-29 13:18:19 -03:00
|
|
|
steps {
|
2025-10-29 15:40:52 -03:00
|
|
|
echo 'Building...'
|
|
|
|
|
sh 'docker build -t my-python-app .'
|
2025-10-29 13:11:30 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|