Jenkins-file test
This commit is contained in:
parent
ea780a9835
commit
c389a7a28f
1 changed files with 17 additions and 0 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
filename 'Dockerfile'
|
||||||
|
args: '-v /tmp/data:/app/data -p 3024:3024'
|
||||||
|
additionalBuildArgs: '--build-arg UID=1000 --build-arg GID=1000'
|
||||||
|
label 'disseminate'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
sh 'echo hello, disseminate!'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue