Dockerfile.gpu 2.6 KB
Newer Older
Y
Yi Wang 已提交
1 2
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04
MAINTAINER PaddlePaddle Authors <paddle-dev@baidu.com>
3

L
Li Peng 已提交
4
ARG DEBIAN_FRONTEND=noninteractive
Y
yangwenbo02 已提交
5 6
ARG UBUNTU_MIRROR
RUN /bin/bash -c 'if [[ -n ${UBUNTU_MIRROR} ]]; then sed -i 's#http://archive.ubuntu.com#${UBUNTU_MIRROR}#g' /etc/apt/sources.list; fi'
7 8
RUN apt-get update \
    && apt-get install -y cmake libprotobuf-dev protobuf-compiler git \
Y
Yi Wang 已提交
9 10
    libgoogle-glog-dev libgflags-dev libgtest-dev \
    libatlas-dev libatlas3-base g++ m4 python-pip \
11 12
    python-protobuf python-numpy python-dev swig openssh-server \
    wget unzip python-matplotlib tar xz-utils bzip2 gzip coreutils \
13 14 15
    sed grep graphviz libjpeg-dev zlib1g-dev doxygen \
    clang-3.8 llvm-3.8 libclang-3.8-dev \
    && apt-get clean -y
Y
Yi Wang 已提交
16
RUN cd /usr/src/gtest && cmake . && make && cp *.a /usr/lib
17
RUN pip install -U BeautifulSoup docopt PyYAML pillow \
18
    sphinx sphinx_rtd_theme recommonmark
19

L
Li Peng 已提交
20 21 22 23 24
# cmake tends to hide and blur the dependencies between code modules, as
# noted here https://github.com/PaddlePaddle/Paddle/issues/763. We are
# thinking about using Bazel to fix this problem, e.g.,
# https://github.com/PaddlePaddle/Paddle/issues/681#issuecomment-263996102. To
# start the trail of fixing, we add Bazel to our Dockerfiles.
25 26 27 28 29 30 31
RUN apt-get update && apt-get install -y curl software-properties-common \
    && add-apt-repository ppa:webupd8team/java \
    && echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \
    && echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
    && curl https://bazel.build/bazel-release.pub.gpg | apt-key add - \
    && apt-get update && apt-get install -y oracle-java8-installer bazel

Y
Yi Wang 已提交
32
ARG WITH_AVX
33 34 35 36
ARG WITH_DOC
ARG WITH_SWIG_PY
ARG WITH_STYLE_CHECK

Y
Yi Wang 已提交
37
ENV WITH_GPU=ON
38 39 40 41
ENV WITH_AVX=${WITH_AVX:-ON}
ENV WITH_DOC=${WITH_DOC:-ON}
ENV WITH_SWIG_PY=${WITH_SWIG_PY:-ON}
ENV WITH_STYLE_CHECK=${WITH_STYLE_CHECK:-OFF}
42 43 44

RUN mkdir /paddle
COPY . /paddle/
Y
Yi Wang 已提交
45
RUN /paddle/paddle/scripts/docker/build.sh
46
VOLUME ["/usr/share/nginx/html/data", "/usr/share/nginx/html/paddle"]
47 48 49 50 51 52 53 54 55 56 57 58

RUN echo 'export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH}' >> /etc/profile
RUN pip install /usr/local/opt/paddle/share/wheels/*.whl
RUN paddle version  # print version after build

# Configure OpenSSH server. c.f. https://docs.docker.com/engine/examples/running_ssh_service
RUN mkdir /var/run/sshd
RUN echo 'root:root' | chpasswd
RUN sed -ri 's/^PermitRootLogin\s+.*/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN sed -ri 's/UsePAM yes/#UsePAM yes/g' /etc/ssh/sshd_config
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]