From acef609a2fc4055028304068b7bd97f8bed63da0 Mon Sep 17 00:00:00 2001 From: F4ilji Date: Thu, 2 Jul 2026 20:54:14 +0500 Subject: [PATCH] Fix composer open_basedir restriction --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8d3a671..f904f3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,7 +28,7 @@ pipeline { stage('Install Dependencies') { steps { dir("${APP_DIR}") { - sh 'docker exec ntspi-php composer install --no-dev --no-interaction --prefer-dist --no-cache' + sh 'docker exec ntspi-php php -d open_basedir=none /usr/local/bin/composer install --no-dev --no-interaction --prefer-dist --no-cache' } } }