9 lines
257 B
Docker
9 lines
257 B
Docker
FROM alpine
|
|
|
|
RUN set -ex; \
|
|
apk update --no-cache; \
|
|
apk add --no-cache -t .net-tools \
|
|
bash bash-completion bind-tools busybox-extras coreutils iproute2 iputils mtr net-tools \
|
|
netcat-openbsd tcpdump whois
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|