From 46711f3ad39efa02c19b29c6c9987038f2f89fc4 Mon Sep 17 00:00:00 2001 From: Tan Nguyen Date: Sun, 4 Aug 2024 02:58:58 +0700 Subject: [PATCH] fix: update env syntax in docker file --- php/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/Dockerfile b/php/Dockerfile index 3839b2e..bf986f6 100644 --- a/php/Dockerfile +++ b/php/Dockerfile @@ -12,9 +12,9 @@ RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ ## Config user ARG USER_ID=1000 -ENV USER_ID ${USER_ID} +ENV USER_ID=${USER_ID} ARG GROUP_ID=1000 -ENV GROUP_ID ${GROUP_ID} +ENV GROUP_ID=${GROUP_ID} # ensure www-data user exists RUN set -eu; \