pflaenz.li/Jenkinsfile
2023-04-07 11:04:46 +02:00

29 lines
663 B
Groovy

pipeline {
agent any
stages {
stage('Pull git') {
steps {
checkout scm
}
}
stage('Build Docker Image') {
steps {
script {
def dockerImage = docker.build('pflaenzli', '-f Dockerfile . --tag pflaenzli:latest')
}
}
}
stage('Push Docker Image') {
steps {
script {
docker.withRegistry('https://git.thisfro.ch', 'jenkins-ci') {
dockerImage.push()
}
}
}
}
}
}