Skip to content

Commit

Permalink
Add pillow to docker image, reduce docker image compile time.
Browse files Browse the repository at this point in the history
ISSUE=4600057



git-svn-id: https://svn.baidu.com/idl/trunk/paddle@1438 1ad973e4-5ce8-4261-8a94-b56d1f490c56
  • Loading branch information
yuyang18 committed Aug 31, 2016
1 parent 05796ec commit 9af628c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions paddle/scripts/docker/Dockerfile.m4
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ ENV IS_DEVEL=PADDLE_IS_DEVEL
ENV WITH_DEMO=PADDLE_WITH_DEMO
ENV PIP_INSTALL_ARGS ""
ENV PIP_GENERAL_ARGS ""
ENV USE_UBUNTU_MIRROR OFF
RUN cd /root/ && bash build.sh
13 changes: 9 additions & 4 deletions paddle/scripts/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ function abort(){

trap 'abort' 0
set -e
sed -i 's#http://archive\.ubuntu\.com/ubuntu/#mirror://mirrors\.ubuntu\.com/mirrors\.txt#g' /etc/apt/sources.list
if [ ${USE_UBUNTU_MIRROR} == "ON" ]; then
sed -i 's#http://archive\.ubuntu\.com/ubuntu/#mirror://mirrors\.ubuntu\.com/mirrors\.txt#g'\
/etc/apt/sources.list
fi
apt-get update
apt-get install -y cmake libprotobuf-dev protobuf-compiler git \
libgoogle-glog-dev libgflags-dev libatlas-dev libatlas3-base g++ m4 python-pip\
Expand All @@ -22,7 +25,8 @@ git clone https://github.com/baidu/Paddle.git paddle
cd paddle
mkdir build
cd build
cmake .. -DWITH_DOC=OFF -DWITH_GPU=${WITH_GPU} -DWITH_SWIG_PY=ON -DCUDNN_ROOT=/usr/
cmake .. -DWITH_DOC=OFF -DWITH_GPU=${WITH_GPU} -DWITH_SWIG_PY=ON\
-DCUDNN_ROOT=/usr/ -DWITH_STYLE_CHECK=OFF
make -j `nproc`
# because durning make install, there are several warning, so set +e, do not cause abort
make install
Expand All @@ -32,8 +36,9 @@ paddle version # print version after build

if [ ${WITH_DEMO} == "ON" ]; then
apt-get install -y wget unzip perl python-matplotlib tar xz-utils bzip2 gzip coreutils\
sed grep graphviz
pip ${PIP_GENERAL_ARGS} install ${PIP_INSTALL_ARGS} BeautifulSoup docopt PyYAML
sed grep graphviz libjpeg-dev zlib1g-dev
pip ${PIP_GENERAL_ARGS} install ${PIP_INSTALL_ARGS} BeautifulSoup docopt \
PyYAML pillow
fi
if [ ${IS_DEVEL} == "OFF" ]; then # clean build packages.
cd ~
Expand Down
2 changes: 1 addition & 1 deletion paddle/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
packages=['py_paddle'],
include_dirs = [np.get_include(), "../"], # include numpy and paddle.
install_requires = [
'numpy>=1.10.1', # The numpy is required.
'numpy>=1.8.0', # The numpy is required.
'protobuf>=2.4.1' # The paddle protobuf version
],
)

0 comments on commit 9af628c

Please sign in to comment.