forked from chriswayg/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
58 lines (55 loc) · 1.33 KB
/
Dockerfile
File metadata and controls
58 lines (55 loc) · 1.33 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
FROM alpine
LABEL maintainer="Pratik raj https://github.com/rajpratik71"
ENV TERM=xterm
WORKDIR /media/root
# most utilities are from the latest stable alpine release
# added some utilities that are only available in edge, community or testing
RUN cat /etc/os-release && \
echo "@edge http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
echo "@community http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
apk --no-cache add --update \
atop \
bash \
bash-completion \
bc \
bridge-utils \
ca-certificates \
coreutils \
curl \
bind-tools \
file \
fio \
gettext \
git \
grep \
hdparm \
htop \
iftop \
iperf \
iproute2 \
logrotate \
ltrace \
mtr \
nano \
ncdu \
ncurses \
ncurses-terminfo \
net-tools \
nmap \
pciutils \
psmisc \
pv \
python3 \
screen \
shadow \
speedtest-cli \
strace \
sysstat \
tar \
tcpdump \
tree \
xz \
zip
VOLUME ["/media/root"]
CMD ["bash"]