Skip to content

Commit 0abf100

Browse files
authored
Merge branch 'main' into Ubuntu_focal_EOL-nvidia-cuda
2 parents 79fa563 + e8784d1 commit 0abf100

11 files changed

Lines changed: 45 additions & 10 deletions

File tree

src/aws-cli/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "aws-cli",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"name": "AWS CLI",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/aws-cli",
66
"description": "Installs the AWS CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",

src/aws-cli/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ check_packages() {
6868

6969
export DEBIAN_FRONTEND=noninteractive
7070

71-
check_packages curl ca-certificates gnupg2 dirmngr unzip bash-completion less
71+
check_packages curl ca-certificates gpg dirmngr unzip bash-completion less
7272

7373
verify_aws_cli_gpg_signature() {
7474
local filePath=$1

src/azure-cli/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Installs the Azure CLI along with needed dependencies. Useful for base Dockerfil
1818
| version | Select or enter an Azure CLI version. (Available versions may vary by Linux distribution.) | string | latest |
1919
| extensions | Optional comma separated list of Azure CLI extensions to install in profile. | string | - |
2020
| installBicep | Optionally install Azure Bicep | boolean | false |
21+
| bicepVersion | Select or enter a Bicep version. ('latest' or a specic version such as 'v0.31.92') | string | latest |
2122
| installUsingPython | Install Azure CLI using Python instead of pipx | boolean | false |
2223

2324
## Customizations

src/docker-in-docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Create child containers *inside* a container, independent from the host's docker
1818
| version | Select or enter a Docker/Moby Engine version. (Availability can vary by OS version.) | string | latest |
1919
| moby | Install OSS Moby build instead of Docker CE | boolean | true |
2020
| mobyBuildxVersion | Install a specific version of moby-buildx when using Moby | string | latest |
21-
| dockerDashComposeVersion | Default version of Docker Compose (latest, v2 or none) | string | latest |
21+
| dockerDashComposeVersion | Default version of Docker Compose (v1, v2 or none) | string | v2 |
2222
| azureDnsAutoDetection | Allow automatically setting the dockerd DNS server when the installation script detects it is running in Azure | boolean | true |
2323
| dockerDefaultAddressPool | Define default address pools for Docker networks. e.g. base=192.168.0.0/16,size=24 | string | - |
2424
| installDockerBuildx | Install Docker Buildx | boolean | true |
@@ -29,7 +29,7 @@ Create child containers *inside* a container, independent from the host's docker
2929

3030
### VS Code Extensions
3131

32-
- `ms-azuretools.vscode-docker`
32+
- `ms-azuretools.vscode-containers`
3333

3434
## Limitations
3535

src/docker-in-docker/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"customizations": {
7171
"vscode": {
7272
"extensions": [
73-
"ms-azuretools.vscode-docker"
73+
"ms-azuretools.vscode-containers"
7474
],
7575
"settings": {
7676
"github.copilot.chat.codeGeneration.instructions": [

src/docker-outside-of-docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Re-use the host docker socket, adding the Docker CLI to a container. Feature inv
2828

2929
### VS Code Extensions
3030

31-
- `ms-azuretools.vscode-docker`
31+
- `ms-azuretools.vscode-containers`
3232

3333
## Limitations
3434

src/docker-outside-of-docker/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"customizations": {
5151
"vscode": {
5252
"extensions": [
53-
"ms-azuretools.vscode-docker"
53+
"ms-azuretools.vscode-containers"
5454
],
5555
"settings": {
5656
"github.copilot.chat.codeGeneration.instructions": [

src/git/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "git",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"name": "Git (from source)",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git",
66
"description": "Install an up-to-date version of Git, built from source as needed. Useful for when you want the latest and greatest features. Auto-detects latest stable version and installs needed dependencies.",

src/git/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
GIT_VERSION=${VERSION} # 'system' checks the base image first, else installs 'latest'
1111
USE_PPA_IF_AVAILABLE=${PPA}
1212

13-
GIT_CORE_PPA_ARCHIVE_GPG_KEY=E1DD270288B4E6030699E45FA1715D88E1DF1F24
13+
GIT_CORE_PPA_ARCHIVE_GPG_KEY=F911AB184317630C59970973E363C90F8F1B6217
1414

1515
if [ "$(id -u)" -ne 0 ]; then
1616
echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.'

src/nvidia-cuda/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Installs shared libraries for NVIDIA CUDA.
2020
| installNvtx | Additionally install NVIDIA Tools Extension (NVTX) | boolean | false |
2121
| installToolkit | Additionally install NVIDIA CUDA Toolkit | boolean | false |
2222
| cudaVersion | Version of CUDA to install | string | 11.8 |
23-
| cudnnVersion | Version of cuDNN to install | string | 8.6.0.163 |
23+
| cudnnVersion | Version of cuDNN to install | string | automatic |
2424

2525
## Compatibility
2626

0 commit comments

Comments
 (0)