Initial commit

This commit is contained in:
2022-10-12 18:24:16 -05:00
commit 0a5be1ae0e
5 changed files with 66 additions and 0 deletions

27
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,27 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker buildx bake --progress=plain'
}
}
stage('Deploy') {
steps {
sh 'docker buildx bake --progress=plain --push'
}
}
}
post {
always {
sh 'docker system prune --force --volumes'
cleanWs(cleanWhenNotBuilt: true,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true)
}
}
}