File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:14.04
22MAINTAINER PaddlePaddle Authors <paddle-dev@baidu.com>
33
4+ ARG DEBIAN_FRONTEND=noninteractive
45RUN apt-get update \
56 && apt-get install -y cmake libprotobuf-dev protobuf-compiler git \
67 libgoogle-glog-dev libgflags-dev libatlas-dev libatlas3-base g++ m4 python-pip \
@@ -12,7 +13,11 @@ RUN apt-get update \
1213RUN pip install -U BeautifulSoup docopt PyYAML pillow \
1314 sphinx sphinx_rtd_theme breathe recommonmark
1415
15- ARG DEBIAN_FRONTEND=noninteractive
16+ # cmake tends to hide and blur the dependencies between code modules, as
17+ # noted here https://github.com/PaddlePaddle/Paddle/issues/763. We are
18+ # thinking about using Bazel to fix this problem, e.g.,
19+ # https://github.com/PaddlePaddle/Paddle/issues/681#issuecomment-263996102. To
20+ # start the trail of fixing, we add Bazel to our Dockerfiles.
1621RUN apt-get update && apt-get install -y curl software-properties-common \
1722 && add-apt-repository ppa:webupd8team/java \
1823 && echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \
Original file line number Diff line number Diff line change 11FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04
22MAINTAINER PaddlePaddle Authors <paddle-dev@baidu.com>
33
4+ ARG DEBIAN_FRONTEND=noninteractive
45RUN apt-get update \
56 && apt-get install -y cmake libprotobuf-dev protobuf-compiler git \
67 libgoogle-glog-dev libgflags-dev libatlas-dev libatlas3-base g++ m4 python-pip \
@@ -12,7 +13,11 @@ RUN apt-get update \
1213RUN pip install -U BeautifulSoup docopt PyYAML pillow \
1314 sphinx sphinx_rtd_theme breathe recommonmark
1415
15- ARG DEBIAN_FRONTEND=noninteractive
16+ # cmake tends to hide and blur the dependencies between code modules, as
17+ # noted here https://github.com/PaddlePaddle/Paddle/issues/763. We are
18+ # thinking about using Bazel to fix this problem, e.g.,
19+ # https://github.com/PaddlePaddle/Paddle/issues/681#issuecomment-263996102. To
20+ # start the trail of fixing, we add Bazel to our Dockerfiles.
1621RUN apt-get update && apt-get install -y curl software-properties-common \
1722 && add-apt-repository ppa:webupd8team/java \
1823 && echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections \
You can’t perform that action at this time.
0 commit comments