From e0a0b96c70da9757e4e1bc2a2c60d46d4972146c Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Mon, 20 Jan 2025 17:37:40 +0100 Subject: [PATCH] Update Dockerfile for environment file handling - Changed from moving to copying the .env.sample - Updated path to use APACHE_DOCUMENT_ROOT for .env --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58dada9..7f59321 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux; \ USER www-data WORKDIR ${WEBSITE_ROOT} -RUN mv .env.sample .env +COPY .env.sample ${APACHE_DOCUMENT_ROOT}/.env RUN composer install RUN php bin/console asset-map:compile