Update Jenkinsfile

This commit is contained in:
priyatham 2025-06-22 18:02:09 -07:00
parent a89df0aaa3
commit a800d51902

8
Jenkinsfile vendored
View file

@ -1,17 +1,13 @@
pipeline pipeline
{ {
agent { dockerfile true } agent {dockerfile true}
stages stages
{ {
stage ('Build') stage ('Build')
{ {
steps steps
{ {
echo 'Starting Build...' echo 'running build'
docker build .
// Delete old and create new out folder
//sh 'rm -rf out && mkdir out -p'
} }
} }