From 583059f12a47c411b068c690a9d7f794f29ce4e6 Mon Sep 17 00:00:00 2001 From: mohiit1502 Date: Sat, 3 Jan 2026 14:41:36 +0530 Subject: [PATCH] fix: Add BUILD_BASE parameter to Jenkins UI --- Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 6fea360..bb2f35d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,6 +3,13 @@ // Build base image (with TensorFlow) only when requirements.txt changes // Then app builds are fast (~30s) using the cached base image +properties([ + parameters([ + booleanParam(name: 'BUILD_BASE', defaultValue: false, + description: 'Build base image with TensorFlow (only needed when requirements.txt changes)') + ]) +]) + def buildBase = params.BUILD_BASE ?: false def builds = []