add docker build env
This commit was merged in pull request #1.
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM alpine
|
||||
|
||||
RUN apk add --no-cache \
|
||||
openjdk17-jre \
|
||||
wget \
|
||||
bash \
|
||||
patch
|
||||
|
||||
RUN wget -O /usr/local/bin/apktool \
|
||||
https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool && \
|
||||
wget -O /usr/local/bin/apktool.jar \
|
||||
https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_3.0.2.jar && \
|
||||
chmod +x /usr/local/bin/apktool.jar && \
|
||||
chmod +x /usr/local/bin/apktool
|
||||
|
||||
WORKDIR /data
|
||||
|
||||
CMD ["tail", "-f", "/dev/null"]
|
||||
Reference in New Issue
Block a user