pflaenz.li/Jenkinsfile
Jannis Portmann 1c4b49efb7 Fix typo
2023-04-07 11:11:47 +02:00

30 lines
734 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 {
def dockerImage = docker.image('pflaenzli:latest')
docker.withRegistry('https://git.thisfro.ch', 'jenkins-ci') {
dockerImage.push()
}
}
}
}
}
}