Created
May 30, 2018 15:24
-
-
Save juliensimon/705e282bd5497b8a9f9351517871c56b to your computer and use it in GitHub Desktop.
kerasmxnet-Dockerfile.gpu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nvidia/cuda:9.0-runtime | |
RUN apt-get update && \ | |
apt-get -y install build-essential libopencv-dev libopenblas-dev libjemalloc-dev libgfortran3 \ | |
python-dev python3-dev python3-pip wget curl | |
COPY mnist_cnn.py /opt/program/train | |
RUN chmod +x /opt/program/train | |
RUN mkdir /root/.keras | |
COPY keras.json /root/.keras/ | |
RUN pip3 install mxnet-cu90 --upgrade --pre && \ | |
pip3 install keras-mxnet --upgrade --pre | |
RUN rm -rf /var/lib/apt/lists/* | |
RUN rm -rf /root/.cache | |
ENV PYTHONDONTWRITEBYTECODE=1 \ | |
PYTHONUNBUFFERED=1 \ | |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/usr/local/lib" | |
ENV PATH="/opt/program:${PATH}" | |
WORKDIR /opt/program |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment