This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
gluon-supernode-docker/debug/Dockerfile

21 lines
375 B
Docker
Raw Normal View History

2021-12-07 01:05:27 +00:00
FROM docker.io/library/debian:bullseye
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
radvdump \
batctl \
iproute2 \
curl \
traceroute \
bind9-host \
tcpdump \
nftables \
inetutils-ping \
procps \
nmap \
2021-12-07 01:05:27 +00:00
&& rm -rf /var/lib/apt/lists /var/cache/apt/archives
COPY entry-point.sh /entry-point.sh
ENTRYPOINT ["/entry-point.sh"]