prosody-docker/Jenkinsfile
Morgan McMillian 2bba2cba00
All checks were successful
thrrgilag/prosody-docker/pipeline/head This commit looks good
try again with diff creds
2023-11-09 17:59:41 -08:00

26 lines
1 KiB
Groovy

pipeline {
agent none
stages {
stage('Build docker image') {
agent { label 'test-build' }
steps {
// mattermostSend "Docker build started - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
script {
docker.withRegistry('https://git.dreamfall.space/thrrgilag', 'thrrgilag-forgejo-pkg') {
def customImage = docker.build("git.dreamfall.space/thrrgilag/prosody:${env.BUILD_TAG}")
customImage.push()
}
}
}
// post {
// success {
// mattermostSend color: "good", message: "Docker build success - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
// }
// failure {
// mattermostSend color: "danger", message: "Docker build failure - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
// }
// }
}
}
}