From 608da55115e8cc9b5c5c1501177ac61427f29322 Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Mon, 13 Feb 2023 21:52:15 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) 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") }