Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
deepak7376 committed Jun 3, 2024
1 parent ae5fc56 commit 48c3447
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
pipeline {
agent any
agent {
docker {
image 'python:3.8-slim'
args '-v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker'
}
}

environment {
DOCKER_IMAGE = "robustbase_img"
Expand All @@ -9,7 +14,7 @@ pipeline {
stage('Checkout') {
steps {
// Checkout the repository
git url: 'https://github.com/deepak7376/robustbase.git', branch: 'master'
git url: 'https://github.com/deepak7376/robustbase.git', branch: 'main'
}
}

Expand Down

0 comments on commit 48c3447

Please sign in to comment.