Update Jenkinsfile

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

3
Jenkinsfile vendored
View File

@ -1,10 +1,11 @@
pipeline {
agent { dockerfile true }
agent any
stages {
stage('Build') {
steps {
sh 'echo building...'
sh 'docker run -p 5000:5000 microblog:latest'
}
}