From f98143121849ca0d0bb65b39168a95da1ab47036 Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Sun, 1 Nov 2020 17:24:43 +0100 Subject: [PATCH] Build job - Rename repo after git clone --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7eae05b..a839032 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,12 +12,13 @@ spec: ) { node(POD_LABEL) { - stage('Build') { + stage('Git') { git url: 'https://gyulai.cloud/git/bme/covidok-backend.git', credentialsId: '1b1c30a0-590d-41d4-b775-bdb90e837bc8' + sh 'mv *covidok-backend* covidok-backend' container('kaniko') { stage('Build and publish dev Docker image') { - sh '/kaniko/executor -f `pwd`/covidok-backend/CoviDok/Dockerfile -c `pwd` --destination=docker.local/bme/covidok' + sh '/kaniko/executor --dockerfile `pwd`/covidok-backend/CoviDok/Dockerfile -c `pwd` --destination=docker.local/bme/covidok' } } }