From ecb588f16af578bd4cbfc2c8b2f70bbd3da55863 Mon Sep 17 00:00:00 2001 From: victormylle <32961910+victormylle@users.noreply.github.com> Date: Sat, 14 Nov 2020 11:44:08 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d10f8a1..a11a442 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,10 +3,10 @@ pipeline { stages { stage('Build Docker Image') { steps { - sh '''docker build -t worldcraftdiscordbot:latest . -docker tag worldcraftdiscordbot:latest worldcraftdiscordbot:latest:v${env.BUILD_ID}''' + sh '''docker build -t worldcraftdiscordbot:latest .''' + sh '''docker tag worldcraftdiscordbot:latest worldcraftdiscordbot:latest:v${env.BUILD_ID}''' } } } -} \ No newline at end of file +}