Skip to content

Commit

Permalink
ops: change build stage #16
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelJNunez committed Mar 11, 2021
1 parent 83980a4 commit 28b21a8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

}
}

0 comments on commit 28b21a8

Please sign in to comment.