add jenkinsfile_docker

This commit is contained in:
Maciej Czajka 2022-04-01 13:12:51 +02:00
parent 33bfbaf07e
commit 44da1bc6d0

12
Jenkinsfile_docker Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent {
dockerfile true
}
stages {
stage('Test') {
steps {
sh 'python3 ./Zajecia_2/main.py'
}
}
}
}