Dockerfile.android 2.1 KB
Newer Older
1 2 3 4 5 6
FROM ubuntu:16.04
MAINTAINER PaddlePaddle Authors <paddle-dev@baidu.com>

ARG UBUNTU_MIRROR
RUN /bin/bash -c 'if [[ -n ${UBUNTU_MIRROR} ]]; then sed -i 's#http://archive.ubuntu.com/ubuntu#${UBUNTU_MIRROR}#g' /etc/apt/sources.list; fi'

7 8 9 10 11
# ENV variables
ARG ANDROID_ABI

ENV ANDROID_ABI=${ANDROID_ABI:-"armeabi-v7a"}

12 13
ENV HOME=/root \
    ANDROID_NDK_HOME=/opt/android-ndk-linux \
14 15
    ANDROID_ARM_STANDALONE_TOOLCHAIN=/opt/arm-toolchain \
    ANDROID_ARM64_STANDALONE_TOOLCHAIN=/opt/arm64-toolchain
16 17

RUN apt-get update && \
L
Liu Yiqun 已提交
18 19 20
    apt-get install -y \
    git python-dev python-pip python-numpy \
    wget curl tar unzip gcc g++ locales clang-format-3.8 swig cmake && \
21 22
    apt-get clean -y

23
# Install Go and glide
24 25
RUN wget -qO- go.tgz https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz | \
    tar -xz -C /usr/local && \
26 27
    mkdir /root/gopath && \
    mkdir /root/gopath/bin && \
28
    mkdir /root/gopath/src
29 30 31 32
ENV GOROOT=/usr/local/go GOPATH=/root/gopath
# should not be in the same line with GOROOT definition, otherwise docker build could not find GOROOT.
ENV PATH=${PATH}:${GOROOT}/bin:${GOPATH}/bin

33 34 35 36 37 38
# git credential to skip password typing
RUN git config --global credential.helper store

# Fix locales to en_US.UTF-8
RUN localedef -i en_US -f UTF-8 en_US.UTF-8

L
Liu Yiqun 已提交
39 40 41 42
RUN pip install --upgrade pip && \
    pip install -U 'protobuf==3.1.0' && \
    pip install -U wheel sphinx && \
    pip install pre-commit
43 44 45 46 47 48 49

# Android NDK
RUN mkdir /opt/android-ndk-tmp && \
    cd /opt/android-ndk-tmp && \
    wget -q https://dl.google.com/android/repository/android-ndk-r14b-linux-x86_64.zip && \
    unzip -q android-ndk-r14b-linux-x86_64.zip && \
    mv android-ndk-r14b ${ANDROID_NDK_HOME} && \
50 51
    ${ANDROID_NDK_HOME}/build/tools/make-standalone-toolchain.sh --arch=arm --platform=android-23 --install-dir=${ANDROID_ARM_STANDALONE_TOOLCHAIN} && \
    ${ANDROID_NDK_HOME}/build/tools/make-standalone-toolchain.sh --arch=arm64 --platform=android-23 --install-dir=${ANDROID_ARM64_STANDALONE_TOOLCHAIN} && \
52 53
    rm -rf /opt/android-ndk-tmp && \
    rm -rf ${ANDROID_NDK_HOME}
54

L
Liu Yiqun 已提交
55
CMD ["bash", "/paddle/paddle/scripts/docker/build_android.sh"]