Run php-fpm as different user (#1745)

This commit is contained in:
William Ono
2019-09-30 16:08:09 -07:00
parent 861ea6b16e
commit 3f9b888139
3 changed files with 13 additions and 1 deletions

View File

@ -759,7 +759,14 @@ RUN apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
rm /var/log/lastlog /var/log/faillog
RUN usermod -u 1000 www-data
# Configure non-root user.
ARG PUID=1000
ENV PUID ${PUID}
ARG PGID=1000
ENV PGID ${PGID}
RUN groupmod -o -g ${PGID} www-data && \
usermod -o -u ${PUID} -g www-data www-data
# Adding the faketime library to the preload file needs to be done last
# otherwise it will preload it for all commands that follow in this file