diff --git a/Jenkinsfile b/Jenkinsfile index cc90474..d591b90 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,17 +2,15 @@ pipeline { agent { docker { image 'python:3.8-slim' - args '--user 0:113' } } stages { stage('Build') { steps { - sh 'pip install poetry' - sh 'python --version' + sh 'pip install --target ${env.WORKSPACE} poetry' + sh 'poetry install' } } - } } \ No newline at end of file