ium_444356/Jenkinsfile_docker

12 lines
169 B
Plaintext
Raw Normal View History

2022-04-01 13:12:51 +02:00
pipeline {
agent {
2022-04-01 13:15:48 +02:00
docker { image 'ubuntu:latest' }
2022-04-01 13:12:51 +02:00
}
stages {
stage('Test') {
steps {
sh 'python3 ./Zajecia_2/main.py'
}
}
}
}