blob: 1e5a956450dc737a5da89e6ef9f71f9189ab4cf1 [file] [log] [blame]
FROM ubuntu:14.04
MAINTAINER Mu Li <muli@cs.cmu.edu>
# install the core library
RUN apt-get update && apt-get install -y build-essential git libopenblas-dev libopencv-dev
RUN git clone --recursive https://github.com/dmlc/mxnet/ && cd mxnet && \
cp make/config.mk . && \
echo "USE_BLAS=openblas" >>config.mk && \
make -j$(nproc)
# python pakcage
RUN apt-get install -y python-numpy wget unzip
ENV PYTHONPATH /mxnet/python