Update Jenkinsfile

This commit is contained in:
Brady-Malott 2023-02-17 00:22:43 -05:00 committed by GitHub
parent 1cf62091f3
commit 2e7b6ec891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

10
Jenkinsfile vendored
View File

@ -1,5 +1,9 @@
node {
checkout scm
pipeline {
agent any
def customImage = docker.build("microblog:latest")
stages {
stage('Build') {
sh 'docker build -t microblog:latest .'
}
}
}