We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05a83a1 commit 335ce85Copy full SHA for 335ce85
1 file changed
Dockerfile
@@ -4,6 +4,17 @@ LABEL description="Scanning APK file for URIs, endpoints & secrets."
4
LABEL repository="https://github.com/dwisiswant0/apkleaks"
5
LABEL maintainer="dwisiswant0"
6
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
18
WORKDIR /app
19
20
COPY requirements.txt .
0 commit comments