Fix composer install ignoring audit
This commit is contained in:
parent
77865fcb6b
commit
d1600487bf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
Loading…
Add table
Reference in a new issue