1
0
mirror of https://github.com/stucki/docker-lineageos synced 2024-12-19 17:12:29 -05:00
Go to file
2014-02-18 14:05:05 +01:00
.gitignore Initial commit 2014-02-02 19:19:34 +01:00
build.sh Add comments 2014-02-16 12:52:12 +01:00
Dockerfile Include tig, a ncurses-based Git repository browser 2014-02-18 14:02:50 +01:00
README.md Add a note that Docker is required for this. No Docker, no fun. 2014-02-18 14:05:05 +01:00
run.sh Add comments 2014-02-16 12:52:12 +01:00

docker-cyanogenmod

Create a Docker based environment to build CyanogenMod.

This Dockerfile will create a docker container which is based on Ubuntu 12.04. It will install the "repo" utility and any other build dependencies which are required to compile CyanogenMod.

The main working directory is a shared folder on the host system, so the Docker container will can be removed at any time.

NOTE: Remember that CyanogenMod is a huge project. It will consume a large amount of disk space (~80 GB) and it can easily take hours to build.

How to build

NOTE: You will need to install Docker to proceed!

git clone https://github.com/stucki/docker-cyanogenmod.git
cd docker-cyanogenmod
./build.sh

How to run

cd docker-cyanogenmod
./run.sh

The container uses "screen" to run the shell. This means that you will be able to open additional shells using screen keyboard shortcuts.

How to build CyanogenMod for your device

repo init -u git://github.com/CyanogenMod/android.git -b cm-11.0
repo sync
source build/envsetup.sh
breakfast <device codename>   # example: breakfast grouper
brunch <device codename>      # example: brunch grouper

For further information, check the following links:

More information

==================