From 557d2ccbedd316efa654b5608b9fb1a4e16d0803 Mon Sep 17 00:00:00 2001 From: vato007 Date: Thu, 30 Jul 2020 11:02:48 +0000 Subject: [PATCH] Use buster instead of alpine python image --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aceff7d..9123cdc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,16 +1,17 @@ pipeline { agent { docker { - image 'vato.ddns.net:8083/python:alpine' + image 'vato.ddns.net:8083/python:buster' } } stages { stage('Build') { steps { - dir('python') { + dir(path: 'python') { sh 'python setup.py bdist_wheel' } + } }