Dockerfile 2.3 KB
Newer Older
Y
Yi Wang 已提交
1 2
FROM ubuntu:14.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'
L
liaogang 已提交
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# ENV variables
ARG BUILD_WOBOQ
ARG BUILD_AND_INSTALL
ARG WITH_AVX
ARG WITH_DOC
ARG WITH_STYLE_CHECK

ENV BUILD_WOBOQ=${BUILD_WOBOQ:-OFF}
ENV BUILD_AND_INSTALL=${BUILD_AND_INSTALL:-OFF}
ENV WITH_GPU=OFF
ENV WITH_AVX=${WITH_AVX:-ON}
ENV WITH_DOC=${WITH_DOC:-OFF}
ENV WITH_STYLE_CHECK=${WITH_STYLE_CHECK:-OFF}

ENV HOME /root

# Add bash enhancements
L
liaogang 已提交
25
COPY ./paddle/scripts/docker/root/ /root/
26

L
liaogang 已提交
27
RUN apt-get update && \
L
liaogang 已提交
28
    apt-get install -y git python-pip python-dev openssh-server bison && \
L
liaogang 已提交
29 30
    apt-get install -y wget unzip tar xz-utils bzip2 gzip coreutils && \
    apt-get install -y curl sed grep graphviz libjpeg-dev zlib1g-dev && \
L
liaogang 已提交
31
    apt-get install -y python-numpy python-matplotlib gcc g++ gfortran && \
L
liaogang 已提交
32
    apt-get install -y automake locales clang-format-3.8 && \
L
liaogang 已提交
33 34
    apt-get clean -y

L
liaogang 已提交
35
# git credential to skip password typing
36
RUN git config --global credential.helper store
L
liaogang 已提交
37 38
# fetch PaddlePaddle book
RUN git submodule update --init --recursive
L
liaogang 已提交
39

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

43
RUN pip install --upgrade pip && \
44
    pip install -U 'protobuf==3.1.0' && \
L
liaogang 已提交
45 46
    pip install -U wheel pillow BeautifulSoup && \
    pip install -U docopt PyYAML sphinx && \
Y
Yu Yang 已提交
47
    pip install -U sphinx-rtd-theme==0.1.9 recommonmark && \
48
    pip install -U pre-commit 'requests==2.9.2' jupyter
L
liaogang 已提交
49 50

RUN curl -sSL https://cmake.org/files/v3.4/cmake-3.4.1.tar.gz | tar -xz && \
L
liaogang 已提交
51
    cd cmake-3.4.1 && ./bootstrap && make -j `nproc` && make install && \
L
liaogang 已提交
52
    cd .. && rm -rf cmake-3.4.1
53 54

COPY . /paddle/
Y
Yi Wang 已提交
55
RUN /paddle/paddle/scripts/docker/build.sh
56
VOLUME ["/usr/share/nginx/html/data", "/usr/share/nginx/html/paddle"]
57 58 59 60 61 62 63

# 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
64

L
liaogang 已提交
65
# Jupyter Notebook: Paddle book
66 67
EXPOSE 8888

Y
Yu Yang 已提交
68
COPY ./paddle/scripts/docker/entrypoint /opt/bin/
69

Y
Yu Yang 已提交
70
CMD ["/opt/bin/entrypoint"]