diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..2452bbd --- /dev/null +++ b/Jenkinsfile @@ -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 { + } + } + } + } + +} \ No newline at end of file