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

44 lines
1.5 KiB
Docker
Raw Normal View History

2014-02-02 05:52:53 -05:00
# Build environment for CyanogenMod
2014-06-23 08:51:25 -04:00
FROM ubuntu:14.04
2014-02-02 05:52:53 -05:00
MAINTAINER Michael Stucki <mundaun@gmx.ch>
ENV DEBIAN_FRONTEND noninteractive
RUN sed -i 's/main$/main universe/' /etc/apt/sources.list
2014-02-02 05:52:53 -05:00
RUN apt-get -qq update
2016-03-13 10:00:21 -04:00
RUN apt-get -qqy upgrade
2014-02-02 05:52:53 -05:00
RUN apt-get install -y bc bsdmainutils file screen
2014-03-08 12:41:24 -05:00
RUN apt-get install -y android-tools-adb android-tools-fastboot
RUN apt-get install -y bison build-essential curl flex git gnupg gperf libesd0-dev liblz4-tool libncurses5-dev libsdl1.2-dev libwxgtk2.8-dev libxml2 libxml2-utils lzop maven openjdk-7-jdk openjdk-7-jre pngcrush schedtool squashfs-tools xsltproc zip zlib1g-dev
RUN apt-get install -y g++-multilib gcc-multilib lib32ncurses5-dev lib32readline-gplv2-dev lib32z1-dev
RUN apt-get install -y ccache rsync tig
2014-02-02 05:52:53 -05:00
2015-03-16 05:19:07 -04:00
RUN mkdir -p /home/cmbuild && useradd --no-create-home cmbuild && rsync -a /etc/skel/ /home/cmbuild/
2014-02-02 05:52:53 -05:00
RUN mkdir /home/cmbuild/bin
RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /home/cmbuild/bin/repo
RUN chmod a+x /home/cmbuild/bin/repo
2015-03-16 05:19:07 -04:00
# Add sudo permission
RUN echo "cmbuild ALL=NOPASSWD: ALL" > /etc/sudoers.d/cmbuild
ADD startup.sh /home/cmbuild/startup.sh
RUN chmod a+x /home/cmbuild/startup.sh
2015-03-16 05:19:07 -04:00
# Fix ownership
RUN chown -R cmbuild:cmbuild /home/cmbuild
# Set global variables
ADD android-env-vars.sh /etc/android-env-vars.sh
RUN echo "source /etc/android-env-vars.sh" >> /etc/bash.bashrc
2014-02-02 05:52:53 -05:00
VOLUME /home/cmbuild/android
2014-06-28 10:19:18 -04:00
VOLUME /srv/ccache
CMD /home/cmbuild/startup.sh
2015-03-16 05:19:07 -04:00
USER cmbuild
WORKDIR /home/cmbuild/android