cicd: Use aapt2-8.12.0-alpha05-12782657

This commit is contained in:
LuK1337
2025-06-17 19:29:04 +02:00
parent 07215f8fe6
commit be76e0c99f

View File

@@ -1,5 +1,11 @@
FROM ubuntu:latest
MAINTAINER LuK1337 <priv.luk@gmail.com>
RUN apt update
RUN apt -y install aapt python3 python3-parse python3-requests
RUN <<EOF
apt update
apt -y install curl python3 python3-parse python3-requests unzip
curl --output aapt2.jar https://dl.google.com/android/maven2/com/android/tools/build/aapt2/8.12.0-alpha05-12782657/aapt2-8.12.0-alpha05-12782657-linux.jar
unzip -d /usr/bin aapt2.jar aapt2
rm aapt2.jar
EOF