Simple docker image to compile android applications
you can build image manually:
docker build --platform linux/amd64 -t maxistar/android .
docker image tag maxistar/android maxistar/android:gradle_v8.10.1
docker image push maxistar/android:gradle_v8.10.1
docker image push maxistar/android:latest
docker run -it maxistar/android:latest /bin/bash -l
docker run --rm -v ${PWD}:/var/app maxistar/android bash \
-c "gradle build && gradle compileDebugSources"