build(docker): update Dockerfile for better setup order #39

Merged
csimonis merged 1 commits from improve-docker-file into main 2025-02-28 13:21:50 +00:00

View File

@ -1,11 +1,6 @@
FROM composer AS composer
FROM php:apache
COPY .. /var/www/html/
COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY .docker/hosts/abiball.conf /etc/apache2/sites-enabled
RUN chown -R www-data:www-data /var/www/html
RUN rm /etc/apache2/sites-enabled/000-default.conf
RUN apt-get update
@ -17,6 +12,13 @@ RUN a2enmod rewrite
RUN pecl install apcu && docker-php-ext-enable apcu
WORKDIR /var/www/html
COPY .. /var/www/html/
COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY .docker/hosts/abiball.conf /etc/apache2/sites-enabled
RUN chown -R www-data:www-data /var/www/html
RUN composer install --optimize-autoloader --no-suggest --no-progress
RUN php bin/console tailwind:build
RUN php bin/console asset-map:compile