ium_444356/Jenkinsfile_docker

14 lines
192 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Test') {
steps {
sh 'whoami'
sh './download.sh'
sh 'python3 ./Zajecia_2/main.py'
}
}
}
}