From 9ec187715493e1e27928e1acf923d58a446be9d2 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Louazel Date: Wed, 3 Apr 2024 15:45:03 +0200 Subject: [PATCH 1/4] Set DEBIAN_FRONTEND to noninteractive Signed-off-by: Jean-Baptiste Louazel --- src/nvidia-cuda/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nvidia-cuda/install.sh b/src/nvidia-cuda/install.sh index cb66d3955..d8658964e 100644 --- a/src/nvidia-cuda/install.sh +++ b/src/nvidia-cuda/install.sh @@ -33,6 +33,8 @@ check_packages() { fi } +export DEBIAN_FRONTEND=noninteractive + check_packages wget ca-certificates # Add NVIDIA's package repository to apt so that we can download packages From 8362825887fe7600cc2949b2a9c6d29d4f59efb1 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Louazel Date: Wed, 3 Apr 2024 15:48:08 +0200 Subject: [PATCH 2/4] Bump nvidia-cuda to 1.1.1 Signed-off-by: Jean-Baptiste Louazel --- src/nvidia-cuda/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvidia-cuda/devcontainer-feature.json b/src/nvidia-cuda/devcontainer-feature.json index 78ad10cd9..bb63ae1c7 100644 --- a/src/nvidia-cuda/devcontainer-feature.json +++ b/src/nvidia-cuda/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "nvidia-cuda", - "version": "1.1.0", + "version": "1.1.1", "name": "NVIDIA CUDA", "description": "Installs shared libraries for NVIDIA CUDA.", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda", From b7b2931f8bed57826f2019ea884cbe2440e6c9e8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Louazel Date: Tue, 9 Apr 2024 11:42:05 +0200 Subject: [PATCH 3/4] Install `liburcu6` Signed-off-by: Jean-Baptiste Louazel --- src/nvidia-cuda/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvidia-cuda/install.sh b/src/nvidia-cuda/install.sh index d8658964e..f334fe951 100644 --- a/src/nvidia-cuda/install.sh +++ b/src/nvidia-cuda/install.sh @@ -35,7 +35,7 @@ check_packages() { export DEBIAN_FRONTEND=noninteractive -check_packages wget ca-certificates +check_packages wget ca-certificates liburcu6 # Add NVIDIA's package repository to apt so that we can download packages # Always use the ubuntu2004 repo because the other repos (e.g., debian11) are missing packages From 2d56c78600faf6b577a1d7d608396ed0d204902f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Louazel Date: Thu, 11 Apr 2024 12:11:05 +0200 Subject: [PATCH 4/4] Revert "Install `liburcu6`" This reverts commit b7b2931f8bed57826f2019ea884cbe2440e6c9e8. --- src/nvidia-cuda/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvidia-cuda/install.sh b/src/nvidia-cuda/install.sh index f334fe951..d8658964e 100644 --- a/src/nvidia-cuda/install.sh +++ b/src/nvidia-cuda/install.sh @@ -35,7 +35,7 @@ check_packages() { export DEBIAN_FRONTEND=noninteractive -check_packages wget ca-certificates liburcu6 +check_packages wget ca-certificates # Add NVIDIA's package repository to apt so that we can download packages # Always use the ubuntu2004 repo because the other repos (e.g., debian11) are missing packages