This commit is contained in:
2024-07-22 18:09:27 +02:00
parent e4610c23e6
commit 8d2c1e9b65

13
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,13 @@
pipeline {
agent {
docker {
image `python:slim`
}
}
stages {
stage("install_dep") {
sh "pip install -r requirements/dev.txt"
}
}
}