docker-alpine-net-tools/Dockerfile
2022-05-19 13:48:10 +08:00

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"]