sample docker pipeline
This commit is contained in:
parent
e43ddccccd
commit
5631c784ea
12
Jenkinsfile3
Normal file
12
Jenkinsfile3
Normal file
@ -0,0 +1,12 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker { image 'ubuntu:latest' }
|
||||
}
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'cat /etc/issue'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user