From d5c9f7cc2f59a001d7b6ccebb02a4b8edd804863 Mon Sep 17 00:00:00 2001 From: Brady-Malott <55215446+Brady-Malott@users.noreply.github.com> Date: Mon, 13 Feb 2023 21:45:26 -0500 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a742e73..40da509 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,11 @@ pipeline { - agent { dockerfile true } + agent any stages { stage('Build') { steps { sh 'echo building...' + sh 'docker run -p 5000:5000 microblog:latest' } }