-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
40 lines (38 loc) · 935 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM ghcr.io/mi2428/dotfiles:latest
LABEL maintainer "mi2428 <[email protected]>"
LABEL org.opencontainers.image.source https://github.com/mi2428/ubuntu
RUN apt-get update \
&& apt-get upgrade -y \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
arp-scan \
arping \
arpwatch \
asciinema \
build-essential \
dnsutils \
docker-compose \
docker.io \
golang \
hping3 \
httpie \
iperf3 \
iputils-ping \
jq \
knot-dnsutils \
ldnsutils \
mtr \
net-tools \
netcat \
nmap \
openssh-client \
psmisc \
tcpdump \
telnet \
wget \
zip \
&& apt-get clean \
&& rm -rf /var/lib/apt/*
RUN pip3 install -U pipenv
RUN git clone --depth 1 https://github.com/upa/deadman /usr/local/src/deadman \
&& ln -snf /usr/local/src/deadman/deadman /usr/local/bin/deadman