1
0
mirror of https://github.com/stucki/docker-lineageos synced 2024-12-19 17:12:29 -05:00
docker-lineageos/Dockerfile

95 lines
2.1 KiB
Docker
Raw Normal View History

# Build environment for LineageOS
2014-02-02 05:52:53 -05:00
2016-08-19 13:03:30 -04:00
FROM ubuntu:16.04
2017-01-03 15:30:34 -05:00
MAINTAINER Michael Stucki <michael@stucki.io>
2014-02-02 05:52:53 -05:00
2017-05-30 13:24:02 -04:00
2017-05-30 13:19:31 -04:00
ENV \
2017-05-30 13:24:02 -04:00
# ccache specifics
CCACHE_SIZE=50G \
CCACHE_DIR=/srv/ccache \
USE_CCACHE=1 \
CCACHE_COMPRESS=1 \
2017-05-30 13:19:31 -04:00
# Extra include PATH, it may not include /usr/local/(s)bin on some systems
PATH=$PATH:/usr/local/bin/
2017-05-30 05:58:38 -04: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 13:03:30 -04:00
# Install build dependencies (source: https://wiki.cyanogenmod.org/w/Build_for_bullhead)
2017-05-30 05:58:38 -04: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 16:08:52 -04:00
# For 64-bit systems
2017-05-30 05:58:38 -04:00
g++-multilib \
gcc-multilib \
lib32ncurses5-dev \
lib32readline6-dev \
lib32z1-dev \
# Install additional packages which are useful for building Android
2017-05-30 05:58:38 -04: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 05:52:53 -05:00
ARG hostuid=1000
ARG hostgid=1000
RUN \
groupadd --gid $hostgid --force build && \
useradd --gid $hostgid --uid $hostuid --non-unique build && \
rsync -a /etc/skel/ /home/build/
2014-02-02 05:52:53 -05:00
2017-05-30 13:19:31 -04: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 05:52:53 -05:00
2015-03-16 05:19:07 -04:00
# Add sudo permission
2017-01-03 13:15:12 -05:00
RUN echo "build ALL=NOPASSWD: ALL" > /etc/sudoers.d/build
2015-03-16 05:19:07 -04:00
2017-01-03 13:15:12 -05:00
ADD startup.sh /home/build/startup.sh
RUN chmod a+x /home/build/startup.sh
2015-03-16 05:19:07 -04:00
# Fix ownership
2017-01-03 13:15:12 -05:00
RUN chown -R build:build /home/build
2015-03-16 05:19:07 -04:00
2017-01-03 13:15:12 -05:00
VOLUME /home/build/android
2014-06-28 10:19:18 -04:00
VOLUME /srv/ccache
2017-01-03 13:15:12 -05:00
CMD /home/build/startup.sh
2015-03-16 05:19:07 -04:00
2017-01-03 13:15:12 -05:00
USER build
WORKDIR /home/build/android