Created Jenkinsfile for building app

This commit is contained in:
Brady-Malott 2023-02-13 20:05:05 -05:00
parent 3472187155
commit 0da675a8a4
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent { dockerfile true }
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build') {
steps {
sh 'docker build -t microblog:latest .'
}
}
}
}