RockPro64 Build Environment Docker Container - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: ROCKPRO64 (https://forum.pine64.org/forumdisplay.php?fid=98) +--- Forum: Android on RockPro64 (https://forum.pine64.org/forumdisplay.php?fid=100) +--- Thread: RockPro64 Build Environment Docker Container (/showthread.php?tid=7712) |
RockPro64 Build Environment Docker Container - dazza5000 - 07-17-2019 I made the following docker container based on another project that has the environment preconfigured for building: https://cloud.docker.com/repository/docker/darrank/docker-rockpro64 It maps your current directory as the base directory for building. You can launch it with the following: Code: docker run --rm --privileged -v "$(pwd)":/home/lineageos -e GIT_USER_NAME=jfloff -e GIT_USER_EMAIL=jfloff@inesc-id.pt -e LINEAGEOS_BRANCH=lineage-16.0 -ti darrank/docker-rockpro64 Once launched, you can build with the following: Code: . build/envsetup.sh |