From b3ed02fdd4f9fa79a05b0e21372549866bf61b2f Mon Sep 17 00:00:00 2001 From: David Beckingsale Date: Thu, 11 Sep 2025 09:58:03 -0700 Subject: [PATCH 1/3] Add CUDA 13-0 and Ubuntu 22.04 to uptodate.yaml --- ubuntu/cuda/uptodate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ubuntu/cuda/uptodate.yaml b/ubuntu/cuda/uptodate.yaml index 8af46ef..e5ac3e3 100644 --- a/ubuntu/cuda/uptodate.yaml +++ b/ubuntu/cuda/uptodate.yaml @@ -16,6 +16,7 @@ dockerbuild: - "12-1" - "12-2" - "12-3" + - "13-0" ubuntu_version: - "22.04" - "22.04" @@ -30,6 +31,7 @@ dockerbuild: - "22.04" - "22.04" - "22.04" + - "22.04" build_args: cuda_version: From d97444493e7b97178b2c1ded1a1eb8d71cbdca29 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Sep 2025 17:52:54 +0000 Subject: [PATCH 2/3] Initial plan From 2417be1c790558784e44207e0417df2a9b81758e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Sep 2025 18:00:25 +0000 Subject: [PATCH 3/3] Fix ubuntu/cuda/Dockerfile to use dynamic ubuntu_version instead of hardcoded ubuntu2004 Co-authored-by: davidbeckingsale <334483+davidbeckingsale@users.noreply.github.com> --- ubuntu/cuda/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ubuntu/cuda/Dockerfile b/ubuntu/cuda/Dockerfile index b249806..698edf1 100644 --- a/ubuntu/cuda/Dockerfile +++ b/ubuntu/cuda/Dockerfile @@ -9,10 +9,10 @@ USER root ENV DEBIAN_FRONTEND noninteractive RUN \ - wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-ubuntu2004.pin \ - && mv cuda-ubuntu2004.pin /etc/apt/preferences.d/cuda-repository-pin-600 \ - && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub \ - && add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/ /" \ + wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntu_version//./}/x86_64/cuda-ubuntu${ubuntu_version//./}.pin \ + && mv cuda-ubuntu${ubuntu_version//./}.pin /etc/apt/preferences.d/cuda-repository-pin-600 \ + && apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntu_version//./}/x86_64/3bf863cc.pub \ + && add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu${ubuntu_version//./}/x86_64/ /" \ && apt-get -qq update \ && apt-get -qq install -y --no-install-recommends cuda-${cuda_version} \ && rm -rf /var/lib/apt/lists/* \