You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.8 KiB
55 lines
2.8 KiB
# NOTE The manylinux1 policy mandates CentOS-5. We replace it with CentOS-6 in
|
|
# order to satisfy the build of capnproto library (a nupic.core dependency),
|
|
# which requires some headers and symbols not present on CentOS-5 (e.g.,
|
|
# signalfd.h, pipe2, O_NONBLOCK, SOCK_NONBLOCK, etc.). See
|
|
# https://github.com/sandstorm-io/capnproto/issues/350.
|
|
FROM nvidia/cuda:<baseimg>
|
|
MAINTAINER Numenta, based on the ManyLinux project
|
|
|
|
ENV LC_ALL en_US.UTF-8
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US.UTF-8
|
|
ENV PATH /opt/rh/devtoolset-2/root/usr/bin:$PATH
|
|
ENV LD_LIBRARY_PATH /opt/rh/devtoolset-2/root/usr/lib64:/opt/rh/devtoolset-2/root/usr/lib:/usr/local/lib64:/usr/local/lib:${LD_LIBRARY_PATH}
|
|
ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
|
|
|
|
COPY build_scripts /build_scripts
|
|
RUN bash build_scripts/build.sh && rm -r build_scripts
|
|
|
|
ENV SSL_CERT_FILE=/opt/_internal/certs.pem
|
|
|
|
# for paddle
|
|
RUN wget --no-check-certificate -qO- https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz | \
|
|
tar -xz -C /usr/local && \
|
|
mkdir /root/gopath && \
|
|
mkdir /root/gopath/bin && \
|
|
mkdir /root/gopath/src
|
|
|
|
|
|
ENV GOROOT=/usr/local/go GOPATH=/root/gopath
|
|
ENV PATH=${GOROOT}/bin:${GOPATH}/bin:${PATH}
|
|
|
|
# protobuf 3.1.0
|
|
RUN cd /opt && wget -q --no-check-certificate https://github.com/google/protobuf/releases/download/v3.1.0/protobuf-cpp-3.1.0.tar.gz && \
|
|
tar xzf protobuf-cpp-3.1.0.tar.gz && \
|
|
cd protobuf-3.1.0 && ./configure && make -j4 && make install && cd .. && rm -f protobuf-cpp-3.1.0.tar.gz
|
|
|
|
|
|
RUN yum install -y sqlite-devel zlib-devel openssl-devel boost boost-devel pcre-devel vim tk-devel tkinter libtool
|
|
|
|
RUN wget -O /root/requirements.txt https://raw.githubusercontent.com/PaddlePaddle/Paddle/develop/python/requirements.txt
|
|
|
|
RUN LD_LIBRARY_PATH=/opt/_internal/cpython-2.7.11-ucs4/lib:${LD_LIBRARY_PATH} /opt/python/cp27-cp27mu/bin/pip install -r /root/requirements.txt && \
|
|
LD_LIBRARY_PATH=/opt/_internal/cpython-2.7.11-ucs2/lib:${LD_LIBRARY_PATH} /opt/python/cp27-cp27m/bin/pip install -r /root/requirements.txt && \
|
|
go get github.com/Masterminds/glide && \
|
|
rm -rf /root/requirements.txt
|
|
|
|
RUN LD_LIBRARY_PATH=/opt/_internal/cpython-2.7.11-ucs4/lib:${LD_LIBRARY_PATH} /opt/python/cp27-cp27mu/bin/pip install pre-commit 'ipython==5.3.0' opencv-python && \
|
|
LD_LIBRARY_PATH=/opt/_internal/cpython-2.7.11-ucs2/lib:${LD_LIBRARY_PATH} /opt/python/cp27-cp27m/bin/pip install pre-commit 'ipython==5.3.0' opencv-python
|
|
|
|
RUN wget -O /opt/swig-2.0.12.tar.gz https://sourceforge.net/projects/swig/files/swig/swig-2.0.12/swig-2.0.12.tar.gz/download && \
|
|
cd /opt && tar xzf swig-2.0.12.tar.gz && cd /opt/swig-2.0.12 && ./configure && make && make install && cd /opt && rm swig-2.0.12.tar.gz
|
|
|
|
RUN mkdir -p /src && cd /src && git clone https://github.com/NVIDIA/nccl.git nccl && cd nccl &&\
|
|
make -j `nproc` install <NCCL_MAKE_OPTS> && cd .. && rm -rf nccl
|