Skip to content

Commit

Permalink
updating the docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptax committed Feb 13, 2024
1 parent 9803cd9 commit 1de3f11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ ARG PYTHON_VERSION=3.9.4-buster
FROM python:${PYTHON_VERSION} as build

MAINTAINER Axelle Apvrille
ENV REFRESHED_AT 2023-07-24
ENV APKTOOL_VERSION "2.8.0"
ENV REFRESHED_AT 2024-02-13
ENV APKTOOL_VERSION "2.9.3"
ENV SMALI_VERSION "2.5.2"

WORKDIR /opt

RUN apt-get update && apt-get install -yqq default-jre libxml2-dev libxslt-dev libmagic-dev git wget
RUN apt-get update && apt-get install -yqq default-jre libxml2-dev libxslt-dev libmagic-dev git wget cmake
RUN pip3 install -U pip wheel
RUN mkdir -p /share

Expand All @@ -19,8 +19,7 @@ RUN cd /opt && wget -q "https://bitbucket.org/iBotPeaches/apktool/downloads/apkt
RUN wget -q "https://bitbucket.org/JesusFreke/smali/downloads/baksmali-${SMALI_VERSION}.jar"

# Install Dex2jar -------------------------------------
RUN wget -O dex2jar.zip -q https://github.com/pxb1988/dex2jar/releases/download/v2.2-SNAPSHOT-2021-10-31/dex-tools-2.2-SNAPSHOT-2021-10-31.zip \
&& unzip dex2jar.zip -d /opt && rm -f dex2jar.zip
RUN wget -O dex2jar.zip -q https://github.com/pxb1988/dex2jar/releases/download/v2.4/dex-tools-v2.4.zip && unzip dex2jar.zip -d /opt && rm -f dex2jar.zip

# Install DroidLysis ----------------------------------
RUN git clone https://github.com/cryptax/droidlysis
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ services:
build:
context: .
dockerfile: Dockerfile
image: cryptax/droidlysis:2023.07
image: cryptax/droidlysis:2024.02
volumes:
- /tmp/droidlysis-share:/share

0 comments on commit 1de3f11

Please sign in to comment.