| FROM debian:bookworm-slim |
|
|
| RUN apt-get update && apt-get upgrade |
| RUN apt-get -y install git git-lfs pip cmake python3 ccache wget |
| |
| RUN wget https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda-repo-debian12-12-6-local_12.6.1-560.35.03-1_amd64.deb |
|
|
| RUN apt -y install software-properties-common |
| RUN add-apt-repository -y contrib |
| RUN dpkg -i cuda-repo-debian12-12-6-local_12.6.1-560.35.03-1_amd64.deb |
| RUN cp /var/cuda-repo-debian12-12-6-local/cuda-D6D196D1-keyring.gpg /usr/share/keyrings/ |
| RUN dpkg -i cuda-repo-debian12-12-6-local_12.6.1-560.35.03-1_amd64.deb |
| |
|
|
| CMD ["sleep", " infinity"] |
|
|