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