2018-12-22 17:19:09 +00:00
|
|
|
From ubuntu:18.04
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get upgrade -y && \
|
|
|
|
apt-get install -y \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
2020-11-18 22:01:29 +00:00
|
|
|
cmake \
|
2018-12-22 17:19:09 +00:00
|
|
|
git \
|
|
|
|
libtool-bin \
|
|
|
|
make \
|
|
|
|
wget \
|
|
|
|
unzip \
|
|
|
|
python \
|
2020-11-18 22:01:29 +00:00
|
|
|
python3-pip \
|
2018-12-22 17:19:09 +00:00
|
|
|
bzip2 \
|
|
|
|
pkg-config \
|
|
|
|
libx11-xcb1 \
|
|
|
|
libgl1-mesa-glx \
|
|
|
|
libglib2.0-0 \
|
2020-04-23 15:23:19 +00:00
|
|
|
openjdk-8-jdk \
|
|
|
|
curl \
|
2020-11-18 22:01:29 +00:00
|
|
|
coreutils \
|
2020-04-23 15:23:19 +00:00
|
|
|
p7zip-full
|
2018-12-22 17:19:09 +00:00
|
|
|
|
2018-12-24 17:14:28 +00:00
|
|
|
# create our working directory and place the local copies of the Qt
|
|
|
|
# install, NDK and SDK there, plus the three files from the Subsurface
|
|
|
|
# sources that we need to get the prep routines to run
|
2018-12-22 17:19:09 +00:00
|
|
|
RUN mkdir -p /android
|
2020-11-18 22:01:29 +00:00
|
|
|
ADD commandlinetools-linux-*.zip /android/
|
|
|
|
RUN cd /android && unzip commandlinetools-linux-*.zip
|
|
|
|
ADD android-build-setup.sh variables.sh /android/
|
2018-12-22 17:19:09 +00:00
|
|
|
|
2020-11-18 22:01:29 +00:00
|
|
|
# run the build setup
|
|
|
|
RUN ls -l /android
|
|
|
|
RUN cd /android && bash -x /android/android-build-setup.sh
|
2018-12-24 17:14:28 +00:00
|
|
|
|
|
|
|
# clean up the files that we don't need to keep the container smaller
|
|
|
|
RUN cd /android && \
|
2020-04-23 15:23:19 +00:00
|
|
|
rm -rf \
|
2020-11-18 22:01:29 +00:00
|
|
|
5*/android/lib/*x86* \
|
|
|
|
5*/android/doc \
|
|
|
|
5*/android/include/QtHelp \
|
|
|
|
5*/android/include/QtFbSupport \
|
|
|
|
5*/android/include/QtFontDatabaseSupport \
|
|
|
|
5*/android/include/QtNfc \
|
|
|
|
5*/android/include/QtPrintSupport \
|
|
|
|
5*/android/include/QtTest \
|
|
|
|
5*/android/include/QtXml \
|
|
|
|
5*/android/plugins/geoservices/libqtgeoservices_mapboxgl.so \
|
|
|
|
commandlinetools-linux-*.zip \
|
|
|
|
$( find platforms -name arch-mips -o -name arch-x86 ) \
|
|
|
|
toolchains/x86-* android-ndk*/toolchains/llvm/prebuilt/x86-* \
|
|
|
|
platforms/android-[12][2345678] \
|
|
|
|
platforms/android-21/arch-x86_64 \
|
|
|
|
ndk/*/sources/cxx-stl/llvm-libc++/libs/x* \
|
|
|
|
ndk/*/sources/cxx-stl/llvm-libc++/libs/*/*static* \
|
|
|
|
ndk/*/sources/cxx-stl/llvm-libc++/test \
|
|
|
|
ndk/*/sources/cxx-stl/llvm-libc++/utils \
|
|
|
|
ndk/*/sources/cxx-stl/llvmlibc++abi \
|
|
|
|
ndk/*/sources/cxx-stl/system \
|
|
|
|
ndk/*/sources/third_party \
|
|
|
|
ndk/*/sysroot/usr/lib \
|
|
|
|
build-tools/*/renderscript \
|
|
|
|
platform-tools/systrace \
|
|
|
|
tools/lib \
|
|
|
|
tools/proguard \
|
|
|
|
tools/support \
|
|
|
|
emulator \
|
|
|
|
platform-tools-2 \
|
|
|
|
variables.sh \
|
|
|
|
android-build-setup.sh
|
|
|
|
/usr/lib/gcc && \
|
2018-12-22 17:19:09 +00:00
|
|
|
ls -l && \
|
|
|
|
du -sh *
|
2018-12-24 17:14:28 +00:00
|
|
|
RUN apt-get clean
|
2020-11-18 22:01:29 +00:00
|
|
|
#RUN cd /android/android-ndk-r18b/toolchains && ln -s x86_64-4.9 x86-64-4.9
|
2019-07-17 06:59:50 +00:00
|
|
|
RUN touch /android/finished-"`date`"
|