pipeline {
  agent {
    docker {
      image 'alpine'
    }
    
  }
  stages {
    stage('') {
      steps {
        sh 'ls'
      }
    }
  }
}