jupyterlab-datascience-gpu/Dockerfile

24 lines
1.2 KiB
Docker
Raw Normal View History

2023-01-27 08:45:15 +00:00
FROM git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab-datascience:latest
2023-01-24 14:00:27 +00:00
2023-01-24 16:41:37 +00:00
USER root
2023-01-27 08:45:15 +00:00
RUN apt-get update && apt upgrade -y && apt-get install -y --no-install-recommends \
build-essential gnupg2 curl ca-certificates && \
curl -fsSLO https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.0-1_all.deb && \
dpkg -i cuda-keyring_1.0-1_all.deb && \
apt-get purge --autoremove -y curl \
&& rm -rf /var/lib/apt/lists/*
2023-01-24 16:41:37 +00:00
2023-01-27 08:45:15 +00:00
RUN apt-get update && apt-get install -y --no-install-recommends \
cuda-11-8 cuda-cudart-11-8 nvidia-gds-11-8 cuda-toolkit-11-8 cuda-libraries-11-8
2023-01-24 15:44:50 +00:00
2023-01-27 08:45:15 +00:00
#RUN wget https://developer.download.nvidia.com/compute/redist/cudnn/v8.7.0/local_installers/11.8/cudnn-local-repo-ubuntu2204-8.7.0.84_1.0-1_amd64.deb
#RUN dpkg -i cudnn-local-repo-ubuntu2204-8.7.0.84_1.0-1_amd64.deb && rm -f cudnn-local-repo-ubuntu2204-8.7.0.84_1.0-1_amd64.deb
RUN apt update && apt install -y libcudnn8
2023-01-24 15:44:50 +00:00
2023-01-27 08:45:15 +00:00
#RUN pip install tensorflow
RUN pip install --force-reinstall tf-nightly==2.12.0.dev20230126
2023-01-27 11:11:33 +00:00
RUN pip install --upgrade tensorrt
2023-01-27 08:45:15 +00:00
USER jovyan
2023-01-24 14:38:15 +00:00
2023-01-27 11:11:33 +00:00
# https://anaconda.org/pytorch-test/pytorch-cuda
#https://github.com/NVIDIA/nvidia-docker/issues/871#issuecomment-966668913