sample docker pipeline

This commit is contained in:
Adam Wojdyla 2022-03-31 23:28:10 +02:00
parent e43ddccccd
commit 5631c784ea

12
Jenkinsfile3 Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent {
docker { image 'ubuntu:latest' }
}
stages {
stage('Test') {
steps {
sh 'cat /etc/issue'
}
}
}
}