Fix composer open_basedir restriction

This commit is contained in:
F4ilji
2026-07-02 20:54:14 +05:00
parent 44ad8ef460
commit acef609a2f
Vendored
+1 -1
View File
@@ -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'
}
}
}