2017-01-03 21:32:06 +01:00
|
|
|
# Build environment for LineageOS
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2016-08-19 20:03:30 +03:00
|
|
|
FROM ubuntu:16.04
|
2017-01-03 21:30:34 +01:00
|
|
|
MAINTAINER Michael Stucki <michael@stucki.io>
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2017-05-30 19:24:02 +02:00
|
|
|
|
2017-05-30 19:19:31 +02:00
|
|
|
ENV \
|
2017-05-30 19:24:02 +02:00
|
|
|
# ccache specifics
|
|
|
|
CCACHE_SIZE=50G \
|
|
|
|
CCACHE_DIR=/srv/ccache \
|
|
|
|
USE_CCACHE=1 \
|
|
|
|
CCACHE_COMPRESS=1 \
|
2017-05-30 19:19:31 +02:00
|
|
|
# Extra include PATH, it may not include /usr/local/(s)bin on some systems
|
|
|
|
PATH=$PATH:/usr/local/bin/
|
|
|
|
|
2017-05-30 11:58:38 +02:00
|
|
|
RUN sed -i 's/main$/main universe/' /etc/apt/sources.list \
|
|
|
|
&& export DEBIAN_FRONTEND=noninteractive \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get upgrade -y \
|
|
|
|
&& apt-get install -y \
|
2016-08-19 20:03:30 +03:00
|
|
|
# Install build dependencies (source: https://wiki.cyanogenmod.org/w/Build_for_bullhead)
|
2017-05-30 11:58:38 +02:00
|
|
|
bison \
|
|
|
|
build-essential \
|
|
|
|
curl \
|
|
|
|
flex \
|
|
|
|
git \
|
|
|
|
gnupg \
|
|
|
|
gperf \
|
|
|
|
libesd0-dev \
|
|
|
|
liblz4-tool \
|
|
|
|
libncurses5-dev \
|
|
|
|
libsdl1.2-dev \
|
|
|
|
libwxgtk3.0-dev \
|
|
|
|
libxml2 \
|
|
|
|
libxml2-utils \
|
|
|
|
lzop \
|
|
|
|
maven \
|
|
|
|
openjdk-8-jdk \
|
|
|
|
pngcrush \
|
|
|
|
schedtool \
|
|
|
|
squashfs-tools \
|
|
|
|
xsltproc \
|
|
|
|
zip \
|
|
|
|
zlib1g-dev \
|
2016-08-20 22:08:52 +02:00
|
|
|
# For 64-bit systems
|
2017-05-30 11:58:38 +02:00
|
|
|
g++-multilib \
|
|
|
|
gcc-multilib \
|
|
|
|
lib32ncurses5-dev \
|
|
|
|
lib32readline6-dev \
|
|
|
|
lib32z1-dev \
|
2016-03-13 15:17:17 +01:00
|
|
|
# Install additional packages which are useful for building Android
|
2017-05-30 11:58:38 +02:00
|
|
|
android-tools-adb \
|
|
|
|
android-tools-fastboot \
|
|
|
|
bash-completion \
|
|
|
|
bc \
|
|
|
|
bsdmainutils \
|
|
|
|
ccache \
|
|
|
|
file \
|
|
|
|
imagemagick \
|
|
|
|
nano \
|
|
|
|
rsync \
|
|
|
|
screen \
|
|
|
|
sudo \
|
|
|
|
tig \
|
|
|
|
wget \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2017-04-19 18:10:56 +02:00
|
|
|
ARG hostuid=1000
|
|
|
|
ARG hostgid=1000
|
|
|
|
|
|
|
|
RUN \
|
2017-04-21 10:14:08 +02:00
|
|
|
groupadd --gid $hostgid --force build && \
|
|
|
|
useradd --gid $hostgid --uid $hostuid --non-unique build && \
|
2017-04-19 18:10:56 +02:00
|
|
|
rsync -a /etc/skel/ /home/build/
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2017-05-30 19:19:31 +02:00
|
|
|
RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /usr/local/bin/repo \
|
|
|
|
&& chmod a+x /usr/local/bin/repo
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2015-03-16 10:19:07 +01:00
|
|
|
# Add sudo permission
|
2017-01-03 19:15:12 +01:00
|
|
|
RUN echo "build ALL=NOPASSWD: ALL" > /etc/sudoers.d/build
|
2015-03-16 10:19:07 +01:00
|
|
|
|
2017-01-03 19:15:12 +01:00
|
|
|
ADD startup.sh /home/build/startup.sh
|
|
|
|
RUN chmod a+x /home/build/startup.sh
|
2016-03-13 14:54:07 +01:00
|
|
|
|
2015-03-16 10:19:07 +01:00
|
|
|
# Fix ownership
|
2017-01-03 19:15:12 +01:00
|
|
|
RUN chown -R build:build /home/build
|
2015-03-16 10:19:07 +01:00
|
|
|
|
2017-01-03 19:15:12 +01:00
|
|
|
VOLUME /home/build/android
|
2014-06-28 16:19:18 +02:00
|
|
|
VOLUME /srv/ccache
|
|
|
|
|
2017-01-03 19:15:12 +01:00
|
|
|
USER build
|
|
|
|
WORKDIR /home/build/android
|
2017-05-30 19:38:12 +02:00
|
|
|
|
|
|
|
CMD /home/build/startup.sh
|