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) 94c5aedcc4 oopsiewoopsie
2024-03-30 18:35:57 -04:00

19 lines
409 B
Groovy

pipeline {
agent {
docker {
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!'
}
}
}
}