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.
23 lines
848 B
23 lines
848 B
FROM ubuntu:xenial
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y wget build-essential lcov curl cmake gcovr libssl-dev \
|
|
git python-cheetah libuv1-dev ninja-build adb xutils-dev
|
|
|
|
# Install the Android NDK
|
|
RUN mkdir -p /tmp/android-ndk && \
|
|
cd /tmp/android-ndk && \
|
|
wget -q http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin -O android-ndk.bin && \
|
|
chmod a+x ./android-ndk.bin && sync && ./android-ndk.bin && \
|
|
mv ./android-ndk-r10e /opt/android-ndk && \
|
|
chmod -R a+rX /opt/android-ndk && \
|
|
rm -rf /tmp/android-ndk
|
|
|
|
ENV ANDROID_NDK_PATH /opt/android-ndk
|
|
|
|
# Ensure a new enough version of CMake is available.
|
|
RUN cd /opt \
|
|
&& wget https://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz \
|
|
&& tar zxvf cmake-3.7.2-Linux-x86_64.tar.gz
|
|
|
|
ENV PATH "/opt/cmake-3.7.2-Linux-x86_64/bin:$PATH"
|
|
|