add dnsutils extension to workspace asn php-fmp

This commit is contained in:
Silas de Rooy
2022-10-13 12:53:56 +02:00
parent 6dba239462
commit 045cd075b9
6 changed files with 52 additions and 0 deletions

View File

@ -1773,7 +1773,17 @@ 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
#
#--------------------------------------------------------------------------