From 3d8fee13e19f8cc3ad26524b1ea4cabcefc4df71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Cap=C3=B3?= Date: Sat, 22 Jun 2024 18:18:28 +0200 Subject: [PATCH] fix warning --- Dockerfile-php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-php b/Dockerfile-php index 8ebcfbe..ee53d36 100644 --- a/Dockerfile-php +++ b/Dockerfile-php @@ -11,8 +11,8 @@ RUN apt-get install -y --no-install-recommends ca-certificates curl apt-transpor RUN set -eux; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html -ENV APACHE_CONFDIR /etc/apache2 -ENV APACHE_ENVVARS $APACHE_CONFDIR/envvars +ENV APACHE_CONFDIR=/etc/apache2 +ENV APACHE_ENVVARS=$APACHE_CONFDIR/envvars RUN set -eux; \ apt-get install -y --no-install-recommends apache2; \