-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
53 lines (50 loc) · 885 Bytes
/
Dockerfile
File metadata and controls
53 lines (50 loc) · 885 Bytes
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
FROM ubuntu:latest
ARG AG="apt-get -yq --no-install-recommends"
ARG DEBIAN_FRONTEND=noninteractive
RUN set -eux; \
$AG update; \
$AG upgrade; \
$AG install \
age \
bash \
bind9-dnsutils \
binutils \
binwalk \
bsdextrautils \
ca-certificates \
cabextract \
curl \
file \
gcc \
git \
iproute2 \
iputils-ping \
jq \
less \
mtr \
nano \
ncdu \
neovim \
net-tools \
netcat-traditional \
openssl \
p7zip \
python3-charset-normalizer \
ripgrep \
rsync \
shellcheck \
socat \
tmux \
traceroute \
tree \
unzip \
xxd \
yq \
; \
$AG autoremove; \
$AG clean; \
rm -rf /var/lib/apt/lists/*;
# "alias" chardet to normalizer in a way that reminds the user what's happening
COPY chardet.sh /bin/chardet
WORKDIR /work
ENTRYPOINT [ "/bin/bash" ]