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

Reviewed-on: #39
Co-authored-by: Jan Klattenhoff <jan@kjan.email>
Co-committed-by: Jan Klattenhoff <jan@kjan.email>
This commit is contained in:
2025-02-28 13:21:50 +00:00
committed by Constantin Simonis
parent bd06199f87
commit 46575b08f7

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,7 +12,14 @@ 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
RUN echo "APP_ENV=prod" > .env.local
RUN echo "APP_ENV=prod" > .env.local