add docker build env

This commit is contained in:
2026-07-09 19:05:51 +02:00
parent 16f3abf51b
commit 6536181373
9 changed files with 35 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM alpine
RUN apk add --no-cache \
openjdk17-jre \
wget \
bash \
patch
RUN wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool && \
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_3.0.2.jar
RUN mv ./apktool /usr/local/bin/ && \
mv ./apktool_3.0.2.jar /usr/local/bin/apktool.jar && \
chmod +x /usr/local/bin/apktool.jar && \
chmod +x /usr/local/bin/apktool
WORKDIR /data
CMD ["tail", "-f", "/dev/null"]