Last active
November 2, 2024 06:01
-
-
Save megamorf/3904ffab3d94e473781ac60f93d144a5 to your computer and use it in GitHub Desktop.
APKTOOL Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM openjdk:8-alpine | |
RUN apk update && apk --no-cache add curl bash xmlstarlet | |
VOLUME ["/app"] | |
WORKDIR /app | |
ARG APKTOOL_VERSION="2.3.4" | |
RUN curl -sLO https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool \ | |
&& curl -sL -o apktool.jar https://github.com/iBotPeaches/Apktool/releases/download/v${APKTOOL_VERSION}/apktool_${APKTOOL_VERSION}.jar \ | |
&& chmod +x apktool* \ | |
&& mv apktool* /usr/local/bin/ | |
ENTRYPOINT ["apktool"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment