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
{
agent { dockerfile true }
agent {dockerfile true}
stages
{
stage ('Build')
{
steps
{
echo 'Starting Build...'
docker build .
// Delete old and create new out folder
//sh 'rm -rf out && mkdir out -p'
echo 'running build'
}
}