install dig and ip commands in Dockerfiles

This commit is contained in:
Raph Estrada 2019-04-05 18:25:44 +01:00
parent 70c6810905
commit f262bb9084
2 changed files with 3 additions and 0 deletions

View file

@ -6,6 +6,8 @@ RUN apt-get update \
&& apt-get install -y -q --no-install-recommends \
ca-certificates \
wget \
iproute2 \
dnsutils \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*

View file

@ -4,6 +4,7 @@ LABEL maintainer="Jason Wilder mail@jasonwilder.com"
# Install wget and install/updates certificates
RUN apk add --no-cache --virtual .run-deps \
ca-certificates bash wget openssl \
iproute2 bind-tools \
&& update-ca-certificates