You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
179 lines
6.0 KiB
179 lines
6.0 KiB
# based on https://github.com/kivy/python-for-android/blob/master/Dockerfile
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
ENV ANDROID_HOME="/opt/android"
|
|
|
|
# configure locale
|
|
RUN apt update -qq > /dev/null && apt install -qq --yes --no-install-recommends \
|
|
locales && \
|
|
locale-gen en_US.UTF-8
|
|
ENV LANG="en_US.UTF-8" \
|
|
LANGUAGE="en_US.UTF-8" \
|
|
LC_ALL="en_US.UTF-8"
|
|
|
|
RUN apt -y update -qq \
|
|
&& apt -y install -qq --no-install-recommends curl unzip ca-certificates \
|
|
&& apt -y autoremove
|
|
|
|
|
|
ENV ANDROID_NDK_HOME="${ANDROID_HOME}/android-ndk"
|
|
ENV ANDROID_NDK_VERSION="19c"
|
|
ENV ANDROID_NDK_HOME_V="${ANDROID_NDK_HOME}-r${ANDROID_NDK_VERSION}"
|
|
|
|
# get the latest version from https://developer.android.com/ndk/downloads/index.html
|
|
ENV ANDROID_NDK_ARCHIVE="android-ndk-r${ANDROID_NDK_VERSION}-linux-x86_64.zip"
|
|
ENV ANDROID_NDK_DL_URL="https://dl.google.com/android/repository/${ANDROID_NDK_ARCHIVE}"
|
|
|
|
# download and install Android NDK
|
|
RUN curl --location --progress-bar \
|
|
"${ANDROID_NDK_DL_URL}" \
|
|
--output "${ANDROID_NDK_ARCHIVE}" \
|
|
&& mkdir --parents "${ANDROID_NDK_HOME_V}" \
|
|
&& unzip -q "${ANDROID_NDK_ARCHIVE}" -d "${ANDROID_HOME}" \
|
|
&& ln -sfn "${ANDROID_NDK_HOME_V}" "${ANDROID_NDK_HOME}" \
|
|
&& rm -rf "${ANDROID_NDK_ARCHIVE}"
|
|
|
|
|
|
ENV ANDROID_SDK_HOME="${ANDROID_HOME}/android-sdk"
|
|
|
|
# get the latest version from https://developer.android.com/studio/index.html
|
|
ENV ANDROID_SDK_TOOLS_VERSION="6514223"
|
|
ENV ANDROID_SDK_BUILD_TOOLS_VERSION="29.0.3"
|
|
ENV ANDROID_SDK_TOOLS_ARCHIVE="commandlinetools-linux-${ANDROID_SDK_TOOLS_VERSION}_latest.zip"
|
|
ENV ANDROID_SDK_TOOLS_DL_URL="https://dl.google.com/android/repository/${ANDROID_SDK_TOOLS_ARCHIVE}"
|
|
ENV ANDROID_SDK_MANAGER="${ANDROID_SDK_HOME}/tools/bin/sdkmanager --sdk_root=${ANDROID_SDK_HOME}"
|
|
|
|
# download and install Android SDK
|
|
RUN curl --location --progress-bar \
|
|
"${ANDROID_SDK_TOOLS_DL_URL}" \
|
|
--output "${ANDROID_SDK_TOOLS_ARCHIVE}" \
|
|
&& mkdir --parents "${ANDROID_SDK_HOME}" \
|
|
&& unzip -q "${ANDROID_SDK_TOOLS_ARCHIVE}" -d "${ANDROID_SDK_HOME}" \
|
|
&& rm -rf "${ANDROID_SDK_TOOLS_ARCHIVE}"
|
|
|
|
# update Android SDK, install Android API, Build Tools...
|
|
RUN mkdir --parents "${ANDROID_SDK_HOME}/.android/" \
|
|
&& echo '### User Sources for Android SDK Manager' \
|
|
> "${ANDROID_SDK_HOME}/.android/repositories.cfg"
|
|
|
|
# accept Android licenses (JDK necessary!)
|
|
RUN apt -y update -qq \
|
|
&& apt -y install -qq --no-install-recommends openjdk-13-jdk \
|
|
&& apt -y autoremove
|
|
RUN yes | ${ANDROID_SDK_MANAGER} --licenses > /dev/null
|
|
|
|
# download platforms, API, build tools
|
|
RUN ${ANDROID_SDK_MANAGER} "platforms;android-24" > /dev/null && \
|
|
${ANDROID_SDK_MANAGER} "platforms;android-28" > /dev/null && \
|
|
${ANDROID_SDK_MANAGER} "build-tools;${ANDROID_SDK_BUILD_TOOLS_VERSION}" > /dev/null && \
|
|
${ANDROID_SDK_MANAGER} "extras;android;m2repository" > /dev/null && \
|
|
chmod +x "${ANDROID_SDK_HOME}/tools/bin/avdmanager"
|
|
|
|
# download ANT
|
|
ENV APACHE_ANT_VERSION="1.9.4"
|
|
ENV APACHE_ANT_ARCHIVE="apache-ant-${APACHE_ANT_VERSION}-bin.tar.gz"
|
|
ENV APACHE_ANT_DL_URL="http://archive.apache.org/dist/ant/binaries/${APACHE_ANT_ARCHIVE}"
|
|
ENV APACHE_ANT_HOME="${ANDROID_HOME}/apache-ant"
|
|
ENV APACHE_ANT_HOME_V="${APACHE_ANT_HOME}-${APACHE_ANT_VERSION}"
|
|
|
|
RUN curl --location --progress-bar \
|
|
"${APACHE_ANT_DL_URL}" \
|
|
--output "${APACHE_ANT_ARCHIVE}" \
|
|
&& tar -xf "${APACHE_ANT_ARCHIVE}" -C "${ANDROID_HOME}" \
|
|
&& ln -sfn "${APACHE_ANT_HOME_V}" "${APACHE_ANT_HOME}" \
|
|
&& rm -rf "${APACHE_ANT_ARCHIVE}"
|
|
|
|
|
|
ENV USER="user"
|
|
ENV HOME_DIR="/home/${USER}"
|
|
ENV WORK_DIR="${HOME_DIR}/wspace" \
|
|
PATH="${HOME_DIR}/.local/bin:${PATH}"
|
|
|
|
# install system/build dependencies
|
|
# https://github.com/kivy/buildozer/blob/master/docs/source/installation.rst#android-on-ubuntu-2004-64bit
|
|
RUN apt -y update -qq \
|
|
&& apt -y install -qq --no-install-recommends \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
wget \
|
|
lbzip2 \
|
|
patch \
|
|
sudo \
|
|
software-properties-common \
|
|
git \
|
|
zip \
|
|
unzip \
|
|
build-essential \
|
|
ccache \
|
|
openjdk-13-jdk \
|
|
autoconf \
|
|
libtool \
|
|
pkg-config \
|
|
zlib1g-dev \
|
|
libncurses5-dev \
|
|
libncursesw5-dev \
|
|
libtinfo5 \
|
|
cmake \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
automake \
|
|
gettext \
|
|
libltdl-dev \
|
|
&& apt -y autoremove \
|
|
&& apt -y clean
|
|
|
|
|
|
# prepare non root env
|
|
RUN useradd --create-home --shell /bin/bash ${USER}
|
|
|
|
# with sudo access and no password
|
|
RUN usermod -append --groups sudo ${USER}
|
|
RUN echo "%sudo ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
|
|
|
|
|
WORKDIR ${WORK_DIR}
|
|
|
|
# user needs ownership/write access to these directories
|
|
RUN chown --recursive ${USER} ${WORK_DIR} ${ANDROID_SDK_HOME}
|
|
RUN chown ${USER} /opt
|
|
USER ${USER}
|
|
|
|
|
|
RUN python3 -m pip install --user --upgrade pip
|
|
RUN python3 -m pip install --user --upgrade wheel
|
|
RUN python3 -m pip install --user --upgrade cython==0.29.19
|
|
RUN python3 -m pip install --user --pre kivy
|
|
RUN python3 -m pip install --user image
|
|
|
|
# prepare git
|
|
RUN git config --global user.name "John Doe" \
|
|
&& git config --global user.email johndoe@example.com
|
|
|
|
# install buildozer
|
|
RUN cd /opt \
|
|
&& git clone https://github.com/kivy/buildozer \
|
|
&& cd buildozer \
|
|
&& git remote add sombernight https://github.com/SomberNight/buildozer \
|
|
&& git fetch --all \
|
|
# commit: kivy/buildozer "1.2.0" tag
|
|
&& git checkout "94cfcb8d591c11d6ad0e11f129b08c1e27a161c5^{commit}" \
|
|
&& python3 -m pip install --user -e .
|
|
|
|
# install python-for-android
|
|
RUN cd /opt \
|
|
&& git clone https://github.com/kivy/python-for-android \
|
|
&& cd python-for-android \
|
|
&& git remote add sombernight https://github.com/SomberNight/python-for-android \
|
|
&& git fetch --all \
|
|
# commit: from branch sombernight/electrum_20200703
|
|
&& git checkout "0dd2ce87a8f380d20505ca5dc1e2d2357b4a08fc^{commit}" \
|
|
&& python3 -m pip install --user -e .
|
|
|
|
# build env vars
|
|
ENV USE_SDK_WRAPPER=1
|
|
ENV GRADLE_OPTS="-Xmx1536M -Dorg.gradle.jvmargs='-Xmx1536M'"
|
|
|