2022-04-06 15:30:05 +02:00
|
|
|
FROM ubuntu:20.04@sha256:9101220a875cee98b016668342c489ff0674f247f6ca20dfc91b91c0f28581ae
|
2021-01-19 12:35:51 +01:00
|
|
|
LABEL maintainer="Nicola Corna <nicola@corna.info>"
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# Environment variables
|
|
|
|
#######################
|
|
|
|
|
2017-12-19 23:25:42 +01:00
|
|
|
ENV MIRROR_DIR /srv/mirror
|
2017-01-08 17:37:37 +01:00
|
|
|
ENV SRC_DIR /srv/src
|
2017-11-10 00:26:56 +01:00
|
|
|
ENV TMP_DIR /srv/tmp
|
2017-01-08 17:37:37 +01:00
|
|
|
ENV CCACHE_DIR /srv/ccache
|
2017-01-21 23:59:02 +01:00
|
|
|
ENV ZIP_DIR /srv/zips
|
2017-01-21 13:53:58 +01:00
|
|
|
ENV LMANIFEST_DIR /srv/local_manifests
|
2017-05-24 22:12:56 +02:00
|
|
|
ENV KEYS_DIR /srv/keys
|
2017-10-18 17:20:32 +02:00
|
|
|
ENV LOGS_DIR /srv/logs
|
2017-10-27 08:07:37 +02:00
|
|
|
ENV USERSCRIPTS_DIR /srv/userscripts
|
2017-08-07 16:54:08 +02:00
|
|
|
|
2017-05-05 15:38:45 +02:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV USER root
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# Configurable environment variables
|
|
|
|
####################################
|
|
|
|
|
|
|
|
# By default we want to use CCACHE, you can disable this
|
|
|
|
# WARNING: disabling this may slow down a lot your builds!
|
|
|
|
ENV USE_CCACHE 1
|
|
|
|
|
2017-11-06 16:31:11 +01:00
|
|
|
# ccache maximum size. It should be a number followed by an optional suffix: k,
|
|
|
|
# M, G, T (decimal), Ki, Mi, Gi or Ti (binary). The default suffix is G. Use 0
|
|
|
|
# for no limit.
|
|
|
|
ENV CCACHE_SIZE 50G
|
|
|
|
|
2020-08-16 01:46:31 +02:00
|
|
|
# We need to specify the ccache binary since it is no longer packaged along with AOSP
|
|
|
|
ENV CCACHE_EXEC /usr/bin/ccache
|
|
|
|
|
2017-11-10 00:26:56 +01:00
|
|
|
# Environment for the LineageOS branches name
|
2021-01-19 12:37:05 +01:00
|
|
|
# See https://github.com/LineageOS/android/branches for possible options
|
2019-08-21 10:24:13 +02:00
|
|
|
ENV BRANCH_NAME 'lineage-16.0'
|
2017-01-08 17:37:37 +01:00
|
|
|
|
2017-07-30 18:13:55 +02:00
|
|
|
# Environment for the device list (separate by comma if more than one)
|
2017-01-08 17:37:37 +01:00
|
|
|
# eg. DEVICE_LIST=hammerhead,bullhead,angler
|
|
|
|
ENV DEVICE_LIST ''
|
|
|
|
|
2017-05-30 21:43:54 +02:00
|
|
|
# Release type string
|
|
|
|
ENV RELEASE_TYPE 'UNOFFICIAL'
|
|
|
|
|
2017-01-08 17:37:37 +01:00
|
|
|
# OTA URL that will be used inside CMUpdater
|
|
|
|
# Use this in combination with LineageOTA to make sure your device can auto-update itself from this buildbot
|
|
|
|
ENV OTA_URL ''
|
|
|
|
|
|
|
|
# User identity
|
|
|
|
ENV USER_NAME 'LineageOS Buildbot'
|
|
|
|
ENV USER_MAIL 'lineageos-buildbot@docker.host'
|
|
|
|
|
2019-09-30 17:32:28 +02:00
|
|
|
# Include proprietary files, downloaded automatically from github.com/TheMuppets/ and gitlab.com/the-muppets/
|
2017-11-10 00:26:56 +01:00
|
|
|
# Only some branches are supported
|
|
|
|
ENV INCLUDE_PROPRIETARY true
|
|
|
|
|
2018-02-28 21:30:18 +01:00
|
|
|
# Mount an overlay filesystem over the source dir to do each build on a clean source
|
|
|
|
ENV BUILD_OVERLAY false
|
|
|
|
|
|
|
|
# Clone the full LineageOS mirror (> 200 GB)
|
|
|
|
ENV LOCAL_MIRROR false
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# If you want to preserve old ZIPs set this to 'false'
|
2017-08-07 16:54:08 +02:00
|
|
|
ENV CLEAN_OUTDIR false
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# Change this cron rule to what fits best for you
|
2017-05-04 14:51:19 +02:00
|
|
|
# Use 'now' to start the build immediately
|
2017-08-07 16:54:08 +02:00
|
|
|
# For example, '0 10 * * *' means 'Every day at 10:00 UTC'
|
|
|
|
ENV CRONTAB_TIME 'now'
|
2017-01-08 17:37:37 +01:00
|
|
|
|
2018-02-28 21:30:18 +01:00
|
|
|
# Clean artifacts output after each build
|
|
|
|
ENV CLEAN_AFTER_BUILD true
|
|
|
|
|
2017-06-06 08:27:09 +02:00
|
|
|
# Provide root capabilities builtin inside the ROM (see http://lineageos.org/Update-and-Build-Prep/)
|
2017-08-07 16:54:08 +02:00
|
|
|
ENV WITH_SU false
|
2017-01-21 11:43:44 +01:00
|
|
|
|
2017-01-21 11:49:25 +01:00
|
|
|
# Provide a default JACK configuration in order to avoid out-of-memory issues
|
|
|
|
ENV ANDROID_JACK_VM_ARGS "-Dfile.encoding=UTF-8 -XX:+TieredCompilation -Xmx4G"
|
|
|
|
|
2017-05-03 17:32:18 +02:00
|
|
|
# Custom packages to be installed
|
|
|
|
ENV CUSTOM_PACKAGES ''
|
|
|
|
|
2018-03-08 07:40:01 +01:00
|
|
|
# Sign the builds with the keys in $KEYS_DIR
|
2017-05-24 22:12:56 +02:00
|
|
|
ENV SIGN_BUILDS false
|
2017-05-03 17:32:18 +02:00
|
|
|
|
2018-03-08 07:40:01 +01:00
|
|
|
# When SIGN_BUILDS = true but no keys have been provided, generate a new set with this subject
|
|
|
|
ENV KEYS_SUBJECT '/C=US/ST=California/L=Mountain View/O=Android/OU=Android/CN=Android/emailAddress=android@android.com'
|
|
|
|
|
2017-05-17 00:33:15 +02:00
|
|
|
# Move the resulting zips to $ZIP_DIR/$codename instead of $ZIP_DIR/
|
2017-08-07 16:54:08 +02:00
|
|
|
ENV ZIP_SUBDIR true
|
2017-05-17 00:33:15 +02:00
|
|
|
|
2017-10-18 17:20:32 +02:00
|
|
|
# Write the verbose logs to $LOGS_DIR/$codename instead of $LOGS_DIR/
|
|
|
|
ENV LOGS_SUBDIR true
|
|
|
|
|
2017-07-30 18:10:47 +02:00
|
|
|
# Apply the MicroG's signature spoofing patch
|
|
|
|
# Valid values are "no", "yes" (for the original MicroG's patch) and
|
|
|
|
# "restricted" (to grant the permission only to the system privileged apps).
|
|
|
|
#
|
|
|
|
# The original ("yes") patch allows user apps to gain the ability to spoof
|
|
|
|
# themselves as other apps, which can be a major security threat. Using the
|
|
|
|
# restricted patch and embedding the apps that requires it as system privileged
|
|
|
|
# apps is a much secure option. See the README.md ("Custom mode") for an
|
|
|
|
# example.
|
2017-05-22 10:03:05 +02:00
|
|
|
ENV SIGNATURE_SPOOFING "no"
|
|
|
|
|
2017-06-06 08:27:09 +02:00
|
|
|
# Delete old zips in $ZIP_DIR, keep only the N latest one (0 to disable)
|
|
|
|
ENV DELETE_OLD_ZIPS 0
|
|
|
|
|
2017-10-18 17:20:32 +02:00
|
|
|
# Delete old logs in $LOGS_DIR, keep only the N latest one (0 to disable)
|
|
|
|
ENV DELETE_OLD_LOGS 0
|
|
|
|
|
2022-01-28 19:10:55 +01:00
|
|
|
# build type of your builds (user|userdebug|eng)
|
|
|
|
ENV BUILD_TYPE "userdebug"
|
|
|
|
|
2017-10-27 08:07:37 +02:00
|
|
|
# You can optionally specify a USERSCRIPTS_DIR volume containing these scripts:
|
|
|
|
# * begin.sh, run at the very beginning
|
|
|
|
# * before.sh, run after the syncing and patching, before starting the builds
|
2019-09-30 17:32:28 +02:00
|
|
|
# * pre-build.sh, run before the build of every device
|
2017-10-27 08:07:37 +02:00
|
|
|
# * post-build.sh, run after the build of every device
|
|
|
|
# * end.sh, run at the very end
|
|
|
|
# Each script will be run in $SRC_DIR and must be owned and writeable only by
|
|
|
|
# root
|
|
|
|
|
2017-01-08 17:37:37 +01:00
|
|
|
# Create Volume entry points
|
|
|
|
############################
|
2017-12-19 23:25:42 +01:00
|
|
|
VOLUME $MIRROR_DIR
|
2017-01-08 17:37:37 +01:00
|
|
|
VOLUME $SRC_DIR
|
2017-11-10 00:26:56 +01:00
|
|
|
VOLUME $TMP_DIR
|
2017-01-08 17:37:37 +01:00
|
|
|
VOLUME $CCACHE_DIR
|
2017-01-21 23:59:02 +01:00
|
|
|
VOLUME $ZIP_DIR
|
2017-01-21 11:56:58 +01:00
|
|
|
VOLUME $LMANIFEST_DIR
|
2017-05-24 22:12:56 +02:00
|
|
|
VOLUME $KEYS_DIR
|
2017-10-18 17:20:32 +02:00
|
|
|
VOLUME $LOGS_DIR
|
2017-10-27 08:07:37 +02:00
|
|
|
VOLUME $USERSCRIPTS_DIR
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# Create missing directories
|
|
|
|
############################
|
2021-01-19 12:35:51 +01:00
|
|
|
RUN mkdir -p $MIRROR_DIR $SRC_DIR $TMP_DIR $CCACHE_DIR $ZIP_DIR $LMANIFEST_DIR \
|
|
|
|
$KEYS_DIR $LOGS_DIR $USERSCRIPTS_DIR
|
2017-01-08 17:37:37 +01:00
|
|
|
|
2017-05-05 15:38:45 +02:00
|
|
|
# Install build dependencies
|
|
|
|
############################
|
2021-01-19 12:35:51 +01:00
|
|
|
RUN apt-get -qq update && \
|
|
|
|
apt-get install -y bc bison bsdmainutils build-essential ccache cgpt clang \
|
2019-09-15 02:51:16 +02:00
|
|
|
cron curl flex g++-multilib gcc-multilib git gnupg gperf imagemagick \
|
2020-08-16 01:39:14 +02:00
|
|
|
kmod lib32ncurses5-dev lib32readline-dev lib32z1-dev liblz4-tool \
|
|
|
|
libncurses5 libncurses5-dev libsdl1.2-dev libssl-dev libxml2 \
|
|
|
|
libxml2-utils lsof lzop maven openjdk-8-jdk pngcrush procps \
|
2019-09-15 02:51:16 +02:00
|
|
|
python rsync schedtool squashfs-tools wget xdelta3 xsltproc yasm zip \
|
2021-01-19 12:35:51 +01:00
|
|
|
zlib1g-dev \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2017-01-08 17:37:37 +01:00
|
|
|
|
2021-01-19 12:35:51 +01:00
|
|
|
RUN curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/local/bin/repo && \
|
|
|
|
chmod a+x /usr/local/bin/repo
|
|
|
|
|
2021-07-30 14:43:35 +02:00
|
|
|
# Re-enable TLSv1 and TLSv1.1 in OpenJDK 8 config
|
|
|
|
#(for cm-14.1/lineage-15.1, might be removed later)
|
|
|
|
###################################################
|
|
|
|
RUN echo "jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL, include jdk.disabled.namedCurves" | tee -a /etc/java-8-openjdk/security/java.security
|
|
|
|
|
2021-01-19 12:35:51 +01:00
|
|
|
# Copy required files
|
|
|
|
#####################
|
|
|
|
COPY src/ /root/
|
2017-01-08 17:37:37 +01:00
|
|
|
|
2017-05-24 22:12:56 +02:00
|
|
|
# Set the work directory
|
|
|
|
########################
|
|
|
|
WORKDIR $SRC_DIR
|
|
|
|
|
2017-01-15 23:03:17 +01:00
|
|
|
# Allow redirection of stdout to docker logs
|
|
|
|
############################################
|
2017-05-05 15:38:45 +02:00
|
|
|
RUN ln -sf /proc/1/fd/1 /var/log/docker.log
|
2017-01-08 17:37:37 +01:00
|
|
|
|
|
|
|
# Set the entry point to init.sh
|
2017-08-07 16:54:08 +02:00
|
|
|
################################
|
2017-05-03 17:32:18 +02:00
|
|
|
ENTRYPOINT /root/init.sh
|