From 369db9f97be9efcb3ff1ac7ad1aeaf950de54048 Mon Sep 17 00:00:00 2001 From: Bart Geesink Date: Tue, 17 Sep 2024 20:22:09 +0200 Subject: [PATCH] Docker: Move logging.yml to the correct location --- docker/Dockerfile.prod | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile.prod b/docker/Dockerfile.prod index c8e17f5a7..e524db872 100644 --- a/docker/Dockerfile.prod +++ b/docker/Dockerfile.prod @@ -13,10 +13,9 @@ RUN tar -xvjf /tmp/*.tar.bz2 -C /var/www/html/ && \ # Add the config files for Apache2 RUN rm -rf /etc/apache2/sites-enabled/* COPY ./docker/conf/engine.conf /etc/apache2/sites-enabled/engine.conf -COPY ./docker/conf/logging.yml /var/www/html/config/packages/ +COPY ./docker/conf/logging.yml /var/www/html/app/config/ # Instantiate devconf config RUN cp app/config/parameters.yml.docker app/config/parameters.yml -# Set the default workdir EXPOSE 80 CMD ["apache2-foreground"]