diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..1b501f8 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent { + docker { + image 'vato.ddns.net:8083/python:alpine' + } + + } + stages { + stage('Build') { + steps { + sh 'pip install setuptools wheel' + sh 'python python/setup.py bdist_wheel' + } + } + + } +} \ No newline at end of file