Use buster instead of alpine python image

This commit is contained in:
vato007
2020-07-30 11:02:48 +00:00
parent 5ff2a192ec
commit 557d2ccbed

5
Jenkinsfile vendored
View File

@@ -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'
}
}
}