diff options
-rw-r--r-- | src/git-lfs/devcontainer-feature.json | 4 | ||||
-rw-r--r-- | src/nvidia-cuda/devcontainer-feature.json | 6 | ||||
-rw-r--r-- | src/python/devcontainer-feature.json | 4 | ||||
-rw-r--r-- | src/sshd/devcontainer-feature.json | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/git-lfs/devcontainer-feature.json b/src/git-lfs/devcontainer-feature.json index 7916ea1..a301a64 100644 --- a/src/git-lfs/devcontainer-feature.json +++ b/src/git-lfs/devcontainer-feature.json @@ -1,13 +1,13 @@ { "id": "git-lfs", - "version": "1.0.5", + "version": "1.0.6", "name": "Git Large File Support (LFS)", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs", "description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.", "options": { "version": { "type": "string", - "enum": [ + "proposals": [ "latest", "none" ], diff --git a/src/nvidia-cuda/devcontainer-feature.json b/src/nvidia-cuda/devcontainer-feature.json index 7611b7e..dd5c13d 100644 --- a/src/nvidia-cuda/devcontainer-feature.json +++ b/src/nvidia-cuda/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "nvidia-cuda", - "version": "1.0.5", + "version": "1.0.6", "name": "NVIDIA CUDA", "description": "Installs shared libraries for NVIDIA CUDA.", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda", @@ -17,7 +17,7 @@ }, "cudaVersion": { "type": "string", - "enum": [ + "proposals": [ "11.8", "11.7", "11.6", @@ -31,7 +31,7 @@ }, "cudnnVersion": { "type": "string", - "enum": [ + "proposals": [ "8.6.0.163", "8.5.0.96", "8.4.1.50", diff --git a/src/python/devcontainer-feature.json b/src/python/devcontainer-feature.json index fa59320..1d58121 100644 --- a/src/python/devcontainer-feature.json +++ b/src/python/devcontainer-feature.json @@ -1,13 +1,13 @@ { "id": "python", - "version": "1.0.18", + "version": "1.0.19", "name": "Python", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/python", "description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.", "options": { "version": { "type": "string", - "enum": [ + "proposals": [ "latest", "os-provided", "none", diff --git a/src/sshd/devcontainer-feature.json b/src/sshd/devcontainer-feature.json index b8b7bad..696a23b 100644 --- a/src/sshd/devcontainer-feature.json +++ b/src/sshd/devcontainer-feature.json @@ -1,13 +1,13 @@ { "id": "sshd", - "version": "1.0.6", + "version": "1.0.7", "name": "SSH server", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/sshd", "description": "Adds a SSH server into a container so that you can use an external terminal, sftp, or SSHFS to interact with it.", "options": { "version": { "type": "string", - "enum": [ + "proposals": [ "latest" ], "default": "latest", |