jabe/Jenkinsfile

18 lines
375 B
Text
Raw Normal View History

2024-03-30 23:33:55 +01:00
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!'
}
}
}
}