diff --git a/README.md b/README.md index 29245ed..45af60a 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ to build an application 1. modify the example minimal application source code found in -```bash +```sh vim ./apk/Makefile vim ./apk/..... (other files) ``` 2. run the compilation in the container (which is build via `Dockerfile` and `docker-compose.yml` upon first usage) -```bash +```sh docker-compose run compile ``` @@ -37,5 +37,14 @@ to build an Android application, that via its "Hello World" app example should a - generate a "hello world" application (and extend/grow/modify that) easily via CLI - being portable and easily installable (hence the `docker compose`) - reuse Makefile as an often familiar concept of "recipe" way to build the application - + +## Helpful commands + +* coerce rebuild: +```sh +docker-compose down --remove-orphans --rmi all +docker-compose build --no-cache +``` + +