pipeline {
  agent any
  stages {
    stage("Build/push docker image") {
      steps {
        sh './build.sh push'
      }
    }
  }
}
