From 2e63f3fe9fc1f0fd14ce7973b24e880774b615a8 Mon Sep 17 00:00:00 2001 From: Christoph Kottke Date: Thu, 25 Apr 2024 17:33:04 +0200 Subject: [PATCH] move environment on top --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1996cc65..8ee0f5f7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM php:8.3-apache +ENV CI_ENV=docker # Install dependencies RUN set -ex; \ @@ -29,8 +30,6 @@ RUN set -ex; \ echo 'max_execution_time = 600'; \ } > $PHP_INI_DIR/conf.d/wavelog.ini; -ENV CI_ENV=docker - COPY ./ /var/www/html/ WORKDIR /var/www/html