Update Jenkinsfile

This commit is contained in:
Brady-Malott 2023-02-13 21:49:34 -05:00 committed by GitHub
parent d5c9f7cc2f
commit 71d12a1f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -4,8 +4,10 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'echo building...'
sh 'docker run -p 5000:5000 microblog:latest'
node {
checkout scm
def customImage = docker.build("microblog:latest")
}
}
}