pipeline { agent any stages { stage('build') { steps { checkout scm script { docker.image("golang:1.14-alpine").inside { sh './test.sh' } } } } } }