ium_s487182/Jenkinsfile-Docker

12 lines
139 B
Plaintext
Raw Normal View History

2023-04-19 19:54:21 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Test') {
steps {
sh 'cat /etc/issue'
}
}
2023-04-19 19:50:03 +02:00
}
2023-04-19 18:03:00 +02:00
}