diff --git a/Jenkinsfile b/Jenkinsfile index 161c36b..181234e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,9 @@ pipeline { - agent any + agent { docker { image 'python:3.10.10' } } stages { stage('build') { steps { - sh 'pip3 install -r requirements.txt' + sh 'pip install --no-cache-dir -r requirements.txt' } } stage('test') {