updated jenkinsfile

This commit is contained in:
dev
2025-07-16 22:14:39 +02:00
parent 31c861ada6
commit f74552a8ae

5
Jenkinsfile vendored
View File

@@ -4,7 +4,10 @@ pipeline {
stage('Hello') {
steps {
echo "hello wordl"
sh "python3 --version"
script {
img = 'python:latest'
docker.image("${img}").run('-d')
}
}
}
}