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) b25968cce4 hmm
2024-03-30 18:42:31 -04:00

16 lines
344 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'
}
}
stages {
stage('Test') {
steps {
sh 'echo hello, disseminate!'
}
}
}
}