Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
pipeline {
agent {
docker { image 'python:3.13' }
docker {
image 'python:3.13'
// The -u 0 flags means run commands inside the container
// as the user with uid = 0. This user is, by default, the
// root user. So it is effectively saying run the commands
// as root.
args '-u 0'
}
}
stages {
stage('Installing OS Dependencies') {
Expand Down