diff --git a/Jenkinsfile b/Jenkinsfile index ea37cb6..d987a89 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,16 +1,5 @@ -pipeline { - agent any - - stages { - stage('Build') { - steps { - node { - checkout scm - def customImage = docker.build("microblog:latest") - } - } - } - - } +node { + checkout scm + def customImage = docker.build("microblog:latest") }