Merge branch 'laradock:master' into master

This commit is contained in:
da-mask
2022-11-02 09:40:45 +11:00
committed by GitHub
7 changed files with 54 additions and 2 deletions

View File

@ -1257,6 +1257,18 @@ RUN set -eux; \
php -m | grep -q 'event' \
;fi
###########################################################################
# DNS utilities:
###########################################################################
USER root
ARG INSTALL_DNSUTILS=false
RUN if [ ${INSTALL_DNSUTILS} = true ]; then \
apt-get update && apt-get install -y dnsutils \
;fi
###########################################################################
# Check PHP version:
###########################################################################