add: initial Jenkinsfile

This commit is contained in:
ahoemann 2025-02-13 17:29:42 +01:00
parent c001c5f0b8
commit eff59303bf

23
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Pull Alpine Image') {
steps {
script {
// Pull the Alpine Docker image
dockerImage = docker.image('alpine:latest')
dockerImage.pull()
}
}
}
stage('Deploy') {
steps {
script {
}
}
}
}
}