Adrianux.net/Jenkinsfile

23 lines
No EOL
440 B
Groovy

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 {
}
}
}
}
}