docker-alpine-net-tools/Dockerfile

10 lines
257 B
Docker
Raw Permalink Normal View History

2022-05-19 14:48:09 +09:00
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"]