x86_64-alpine-znc/Jenkinsfile
Jonny Ervine 86c96d8fe8 new file: Dockerfile
new file:   Jenkinsfile
	new file:   UTC
Initial commit
2020-02-19 06:31:40 +00:00

18 lines
555 B
Groovy

node("docker-node") {
docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') {
git branch: '3.11.3', url: "ssh://git@git.ervine.org:2222/jonny/x86_64-alpine-znc", credentialsId: 'jenkins-to-git'
sh "git rev-parse HEAD > .git/commit-id"
def commit_id = readFile('.git/commit-id').trim()
println commit_id
stage "build"
def app = docker.build "library/x86_64/alpine/znc"
stage "publish"
app.push("${env.BUILD_NUMBER}")
app.push("latest")
}
}