Skip to content

Instantly share code, notes, and snippets.

@ragoragino
Created May 11, 2021 12:31
Show Gist options
  • Save ragoragino/cc47eaca9b1f6500af002a577f04836f to your computer and use it in GitHub Desktop.
Save ragoragino/cc47eaca9b1f6500af002a577f04836f to your computer and use it in GitHub Desktop.
ARG ALPINE_VERSION=3.13
FROM alpine:${ALPINE_VERSION}
LABEL ALPINE_VERSION="${ALPINE_VERSION}"
RUN apk update && \
apk add bash \
# dig, nslookup
bind-tools \
# netcat
busybox busybox-extras \
# date
coreutils \
curl \
ethtool \
iperf3 \
iproute2 \
iputils \
jq \
net-tools \
nmap \
openssl \
procps \
socat \
strace \
tcpdump \
tshark
ENTRYPOINT [ "/bin/bash", "-c" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment