Skip to content

Commit 335ce85

Browse files
mohaidossm.mou
andauthored
Added Java & jadx to Image (#97)
Co-authored-by: m.mou <mehdi.moussaif@evina.com>
1 parent 05a83a1 commit 335ce85

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ LABEL description="Scanning APK file for URIs, endpoints & secrets."
44
LABEL repository="https://github.com/dwisiswant0/apkleaks"
55
LABEL maintainer="dwisiswant0"
66

7+
RUN apt-get update && \
8+
apt-get install -y openjdk-17-jre-headless && \
9+
apt-get install -y unzip && \
10+
rm -rf /var/lib/apt/lists/*
11+
12+
# Instal jadx 1.2.0
13+
ADD https://github.com/skylot/jadx/releases/download/v1.2.0/jadx-1.2.0.zip /tmp/jadx.zip
14+
RUN unzip /tmp/jadx.zip -d /opt/jadx && \
15+
rm /tmp/jadx.zip && \
16+
ln -s /opt/jadx/bin/jadx /usr/local/bin/jadx
17+
718
WORKDIR /app
819

920
COPY requirements.txt .

0 commit comments

Comments
 (0)