Fix composer install ignoring audit

This commit is contained in:
Admin 2026-08-11 06:23:38 +00:00
parent 77865fcb6b
commit d1600487bf

View file

@ -9,6 +9,6 @@ WORKDIR /app
COPY . . COPY . .
# Install dependencies if composer.json exists # Install dependencies if composer.json exists
RUN composer install --no-interaction --prefer-dist --optimize-autoloader || true RUN COMPOSER_AUDIT=0 composer install --no-audit --no-interaction --prefer-dist --optimize-autoloader
CMD php artisan serve --host=0.0.0.0 --port=8000 CMD php artisan serve --host=0.0.0.0 --port=8000