jabe/Jenkinsfile

18 lines
372 B
Text
Raw Normal View History

2024-03-30 23:33:55 +01:00
pipeline {
2024-03-30 23:35:57 +01:00
agent {
2024-03-30 23:37:21 +01: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 23:33:55 +01:00
}
}
stages {
stage('Test') {
steps {
sh 'echo hello, disseminate!'
}
}
}
}