Skip to content

Commit

Permalink
fix: update env syntax in docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Aug 3, 2024
1 parent f0dce46 commit 46711f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down

0 comments on commit 46711f3

Please sign in to comment.