From 0fe9373c56bfa9490bd14f9df8e9d905e912768e Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Tue, 25 Jun 2019 18:19:19 -0400 Subject: [PATCH] test --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9ebfe7d..e775463 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,14 +9,18 @@ pipeline { stages { stage('Clone repository') { + steps{ /* Let's make sure we have the repository cloned to our workspace */ checkout scm + } } stage('Build image') { + steps{ /* This builds the actual image; synonymous to * docker build on the command line */ app = docker.build("jcabillot/jenkins-wdocker") + } } stage('Deploy Image') {