mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 21:45:49 +00:00
missing curly braces
This commit is contained in:
parent
8c245d126c
commit
2ee6a931a6
1 changed files with 2 additions and 1 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -1,10 +1,11 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'maven:3-alpine'
|
image 'maven:3-alpine'
|
||||||
label 'my-defined-label'
|
label 'my-defined-label'
|
||||||
args '-v /tmp:/tmp'
|
args '-v /tmp:/tmp'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage ('Build') {
|
stage ('Build') {
|
||||||
steps {
|
steps {
|
||||||
|
|
Loading…
Reference in a new issue