remove development dependencies from composer install in Dockerfile

This commit is contained in:
Alex Justesen 2025-03-28 15:03:54 -04:00
parent 81e1216c1b
commit 85e63571c5

View file

@ -16,7 +16,7 @@ COPY --chown=www-data:www-data . /var/www/html
COPY --chown=www-data:www-data .env.example .env
# Install the composer dependencies
RUN composer install --no-interaction --prefer-dist --optimize-autoloader
RUN composer install --no-dev --no-interaction --prefer-dist --optimize-autoloader
########################
# Assets Image