Additional Android tools for building Waracle Android apps on bitrise.io
Add new dependencies, tools, etc to the Dockerfile, commit, push and the build will uploaded to dockerhub.
When the master branch is tagged, a latest
tag will be added to the image and this should be used on all builds
A docker-compose.yml
is also included, configured for quick testing.
To build the image with docker-compose
all you have to do is: docker-compose build
Then to run bitrise --version
in the container: docker-compose run --rm app bitrise --version
To log into an interactive bash
shell inside the container just run: docker-compose run --rm app /bin/bash
- when you want to exit just run exit
inside the container.
For convenience / experimenting the ./_tmp
folder (which is in .gitignore
)
will be shared to /bitrise/tmp
, to make it easy for you to share files
with the container.
Every time you change your Dockerfile
you'll have to run docker-compose build
again,
so your next docker-compose run
will run in the environment you specify in
the Dockerfile
.