microblog2/Jenkinsfile

17 lines
201 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
node {
checkout scm
def customImage = docker.build("microblog:latest")
}
}
}
}
}