chore: Update Dockerfile to set UID for www-data user

This commit is contained in:
Douglas Barone 2024-08-19 11:54:27 -04:00
parent 08823dd727
commit b9ba05d0c5

View File

@ -7,5 +7,4 @@ RUN a2enmod rewrite
COPY ./src /var/www/html COPY ./src /var/www/html
RUN usermod -u ${uid} www-data \ RUN usermod -u $uid www-data
&& groupmod -g ${uid} www-data;