gpu-jupyter/src/Dockerfile.gpulibs

27 lines
880 B
Docker
Raw Normal View History

2020-02-26 06:50:27 +00:00
LABEL maintainer="Christoph Schranz <christoph.schranz@salzburgresearch.at>"
2020-03-10 17:29:25 +00:00
# Install cudatoolkit must match the version of the base image
RUN conda install --quiet --yes \
2020-03-10 17:29:25 +00:00
cudatoolkit=10.1 && \
conda clean --all -f -y && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
2020-03-10 17:29:25 +00:00
# Install Tensorflow
RUN conda install --quiet --yes \
2020-03-10 17:29:25 +00:00
'tensorflow-gpu' \
'keras-gpu' && \
conda clean --all -f -y && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
2020-03-10 17:29:25 +00:00
# Install PyTorch with dependencies
RUN conda install --quiet --yes \
pyyaml mkl mkl-include setuptools cmake cffi typing \
pytorch \
torchvision && \
conda clean --all -f -y && \
2020-03-10 17:29:25 +00:00
pip install torch_nightly -f https://download.pytorch.org/whl/nightly/cu90/torch_nightly.html && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER