Files
test/Jenkinsfile
2025-07-16 22:14:39 +02:00

15 lines
188 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo "hello wordl"
script {
img = 'python:latest'
docker.image("${img}").run('-d')
}
}
}
}
}