Image on DockerHub gordinmitya/android-ndk
There is two possible way to use this image:
to list packages installed on your machine use
$ANDROID_HOME/tools/bin/sdkmanager --list
-
If all needed sdk packages already in mine
packages.txt
:- create
Dockerfile
in the project root - put
FROM gordinmitya/android-ndk
to use my prebuilt image COPY ./ /app
copy your project files to container
- create
-
If you need something different:
- copy content of
Dockerfile
- create
packages.txt
with all necessary packages (don't forget to put empty line in the end) COPY ./ /app
copy app to container- build an image by yourself
- copy content of