This file contains 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 cifar_10_keras.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