dmlc--dgl
a95459e3a2
* change ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * update ci * nx package * update ci * update ci * update ci * fix * mx dockerfile by zhengda * python3.6->3.5 * update ci image * add tutorial test * fix ci * fix ssl problem * minor change * small fix on traversal utest * fix syntax * add matplotlib in image * fix * update ci * update ci
26 行
990 B
Docker
26 行
990 B
Docker
# CI docker GPU env
|
|
FROM nvidia/cuda:9.0-cudnn7-devel
|
|
|
|
# Base scripts
|
|
RUN apt-get update --fix-missing
|
|
|
|
COPY install/ubuntu_install_core.sh /install/ubuntu_install_core.sh
|
|
RUN bash /install/ubuntu_install_core.sh
|
|
|
|
COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh
|
|
RUN bash /install/ubuntu_install_python.sh
|
|
|
|
COPY install/ubuntu_install_python_package.sh /install/ubuntu_install_python_package.sh
|
|
RUN bash /install/ubuntu_install_python_package.sh
|
|
|
|
COPY install/ubuntu_install_mxnet_gpu.sh /install/ubuntu_install_mxnet_gpu.sh
|
|
RUN bash /install/ubuntu_install_mxnet_gpu.sh
|
|
|
|
# Environment variables
|
|
ENV PATH=/usr/local/nvidia/bin:${PATH}
|
|
ENV PATH=/usr/local/cuda/bin:${PATH}
|
|
ENV CPLUS_INCLUDE_PATH=/usr/local/cuda/include:${CPLUS_INCLUDE_PATH}
|
|
ENV C_INCLUDE_PATH=/usr/local/cuda/include:${C_INCLUDE_PATH}
|
|
ENV LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/nvidia/lib64:${LIBRARY_PATH}
|
|
ENV LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/local/nvidia/lib64:${LD_LIBRARY_PATH}
|