x86_64-alpine-php/Jenkinsfile
Jonny Ervine 8167192c3f new file: Dockerfile
new file:   Jenkinsfile
	new file:   docker-php-entrypoint
	new file:   docker-php-ext-configure
	new file:   docker-php-ext-enable
	new file:   docker-php-ext-install
	new file:   docker-php-source
Initial commit
2020-02-19 04:11:35 +00:00

18 lines
562 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-php", 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/php-source"
stage "publish"
app.push("${env.BUILD_NUMBER}")
app.push("latest")
}
}