jabe/Jenkinsfile

18 lines
372 B
Text
Raw Normal View History

2024-03-30 22:33:55 +00:00
pipeline {
2024-03-30 22:35:57 +00:00
agent {
2024-03-30 22:37:21 +00:00
dockerfile {
filename 'Dockerfile'
args '-v /tmp/data:/app/data -p 3024:3024'
additionalBuildArgs '--build-arg UID=1000 --build-arg GID=1000'
label 'disseminate'
2024-03-30 22:33:55 +00:00
}
}
stages {
stage('Test') {
steps {
sh 'echo hello, disseminate!'
}
}
}
}