Android SDK Docker images

All images are based on Adopt Open JDK images.

They are meant to replace other, more bloated images for CI and development purposes.

Get started

docker run -it --rm nemooudeis/android-sdk:jdk8 /bin/bash
# with your locally mounted source code
docker run -it --rm \
    --mount type=bind,src=/path/to/code,dst=/code \
    nemooudeis/android-sdk:jdk8 \
    /bin/bash

What's installed

  • OpenJDK
  • Android SDK tools
  • Android SDK license
  • Android SDK preview license
  • ANDROID_HOME env var is set
  • appropriate Android SDK directories are added to PATH

Available tags

  • jdk8
  • jdk11

See Docker Hub.