This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
jabe/Jenkinsfile
hexlocation's laptop (asiago) c389a7a28f Jenkins-file test
2024-03-30 18:33:55 -04:00

17 lines
375 B
Groovy

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!'
}
}
}
}