Update Jenkinsfile

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

4
Jenkinsfile vendored
View File

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