Fixed: dev dependencies are not installed in dev container

This commit is contained in:
Anouar Touati 2024-12-29 02:20:22 -05:00
parent 4354f50168
commit a6ed958687

View file

@ -73,7 +73,7 @@ RUN mkdir -p /var/www/.composer && chown apache /var/www/.composer
# Install dependencies
USER apache
RUN COMPOSER_CACHE_DIR=/dev/null composer install --no-dev --working-dir=/var/www/html
RUN COMPOSER_CACHE_DIR=/dev/null composer install --working-dir=/var/www/html
USER root