-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (35 loc) · 891 Bytes
/
Dockerfile
File metadata and controls
39 lines (35 loc) · 891 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
FROM kalilinux/kali-rolling:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
build-essential \
libssl-dev \
zlib1g-dev \
libzstd-dev \
pkg-config \
unzip \
binutils \
strace \
ltrace \
patchelf \
gcc \
gcc-arm-linux-gnueabihf \
binutils-arm-linux-gnueabihf \
git \
vim \
ipython3 \
binwalk \
john \
wordlists && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN dpkg --add-architecture armhf \
&& apt-get update && apt-get install -y \
libssl-dev:armhf \
zlib1g-dev:armhf \
libzstd-dev:armhf \
libc6:armhf \
libgcc-s1:armhf \
libstdc++6:armhf && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /work
ENTRYPOINT ["/bin/bash"]