This repository provides a Dockerfile to automate the build process for the InvenTree Android app, resulting in an APK file placed in the output directory.
In the releases section, one can download pre-built APK files, maintained on a best effort basis.
- Docker installed
-
mkdir -p ./output
-
docker build -t inventree-dockerbuild .
-
docker run -v $(pwd)/output:/output -ti --rm inventree-dockerbuild
- The generated APK file will be available in the output subdirectory.
-
The Dockerfile clones the InvenTree Android app source and compiles it.
-
The output directory is mapped to extract the generated APK from the container.
-
Ensure adequate disk space and correct dependency versions.
-
Run docker logs for build errors.
Licensed under the MIT License. See the LICENSE file for more information.