I have a pipeline with multiple stages, and I want to reuse a docker container between only "n" number of stages, rather than all of them:
pipeline {
   agent none
   stages {
       stage('Install deps') {
            agent {
                docker { image 'node:10-alpine' }
            }
            steps {
                sh 'npm install'
            }
        }
       stage('Build, test, lint, etc') {
            agent {
                docker { image 'node:10-alpine' }
            }
            parallel {
                stage('Build') {
                    agent {
                        docker { image 'node:10-alpine' }
                    }
                    // This fails because it runs in a new container, and the node_modules created during the first installation are gone at this point
                    // How do I reuse the same container created in the install dep step?
                    steps {
                        sh 'npm run build'
                    }
                }
                stage('Test') {
                    agent {
                        docker { image 'node:10-alpine' }
                    }
                    steps {
                        sh 'npm run test'
                    }
                }
            }
        }
        // Later on, there is a deployment stage which MUST deploy using a specific node,
        // which is why "agent: none" is used in the first place
   }
}
                See reuseNode option for Jenkins Pipeline docker agent:
https://jenkins.io/doc/book/pipeline/syntax/#agent
pipeline {
  agent any
  stages {
    stage('NPM install') {
      agent {
        docker {
          /*
           * Reuse the workspace on the agent defined at top-level of
           * Pipeline, but run inside a container.
           */
          reuseNode true
          image 'node:12.16.1'
        }
      }
      environment {
        /*
         * Change HOME, because default is usually root dir, and
         * Jenkins user may not have write permissions in that dir.
         */
        HOME = "${WORKSPACE}"
      }
      steps {
        sh 'env | sort'
        sh 'npm install'
      }
    }
  } 
}
                        For Declarative pipeline, one solution can be to use Dockerfile in the root of the project. For e.g.
Dockerfile
FROM node:10-alpine
// Further Instructions
Jenkinsfile
pipeline{
    agent {
        dockerfile true
    }
    stage('Build') {
        steps{
            sh 'npm run build'
        }
    }
     stage('Test') {
        steps{
            sh 'npm run test'
        }
    }
}
                        You can use scripted pipelines, where you can put multiple stage steps inside a docker step, e.g.
node {
  checkout scm
  docker.image('node:10-alpine').inside {
    stage('Build') {
       sh 'npm run build'
     }
     stage('Test') {
       sh 'npm run test'
     }
  }
}
(code untested)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With