ax / apk.sh

apk.sh makes reverse engineering Android apps easier, automating some repetitive tasks like pulling, decoding, rebuilding and patching an APK.
GNU General Public License v3.0
3.34k stars 189 forks source link

Add docker support #24

Closed p1gp1g closed 8 months ago

p1gp1g commented 1 year ago

Some user may want to use this project without installing additional tools. Docker supports can solve this.

p1gp1g commented 12 months ago

You can use the container with the host adb server too, which can be usefull in some cases :

podman run --rm -v ./:/wd --net=host apk.sh:latest

ax commented 12 months ago

Dunno, 🤔, is docker support effectivelfy useful? apk.sh will download all the tools u need.

p1gp1g commented 12 months ago

I try to avoid downloading stuff on my host, that's why I did this container :)

ineeee commented 11 months ago

why download and create an entire ubuntu container for a single bash script? a bit excessive imo

downloads seem to be stored in ~/.apk.sh, you can just delete that if you don't like having tools in your host