Unverified Commit 67b15cae authored by Josh Spicer's avatar Josh Spicer Committed by GitHub

add installsAfter: common-utils to all Features (#214)

parent 7860eb85
{ {
"id": "anaconda", "id": "anaconda",
"version": "1.0.8", "version": "1.0.9",
"name": "Anaconda", "name": "Anaconda",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/anaconda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/anaconda",
"options": { "options": {
...@@ -16,5 +16,8 @@ ...@@ -16,5 +16,8 @@
"containerEnv": { "containerEnv": {
"CONDA_DIR": "/usr/local/conda", "CONDA_DIR": "/usr/local/conda",
"PATH": "/usr/local/conda/bin:${PATH}" "PATH": "/usr/local/conda/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
...@@ -20,5 +20,8 @@ ...@@ -20,5 +20,8 @@
"AmazonWebServices.aws-toolkit-vscode" "AmazonWebServices.aws-toolkit-vscode"
] ]
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "azure-cli", "id": "azure-cli",
"version": "1.0.4", "version": "1.0.5",
"name": "Azure CLI", "name": "Azure CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/azure-cli", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/azure-cli",
"description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "description": "Installs the Azure CLI along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
...@@ -20,5 +20,8 @@ ...@@ -20,5 +20,8 @@
"ms-vscode.azurecli" "ms-vscode.azurecli"
] ]
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "conda", "id": "conda",
"version": "1.0.4", "version": "1.0.5",
"name": "Conda", "name": "Conda",
"description": "A cross-platform, language-agnostic binary package manager", "description": "A cross-platform, language-agnostic binary package manager",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/conda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/conda",
...@@ -25,5 +25,8 @@ ...@@ -25,5 +25,8 @@
"CONDA_DIR": "/opt/conda", "CONDA_DIR": "/opt/conda",
"CONDA_SCRIPT":"/opt/conda/etc/profile.d/conda.sh", "CONDA_SCRIPT":"/opt/conda/etc/profile.d/conda.sh",
"PATH": "/opt/conda/bin:${PATH}" "PATH": "/opt/conda/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "desktop-lite", "id": "desktop-lite",
"version": "1.0.4", "version": "1.0.5",
"name": "Light-weight Desktop", "name": "Light-weight Desktop",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/desktop-lite",
"description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.", "description": "Adds a lightweight Fluxbox based desktop to the container that can be accessed using a VNC viewer or the web. GUI-based commands executed from the built-in VS code terminal will open on the desktop automatically.",
...@@ -52,5 +52,8 @@ ...@@ -52,5 +52,8 @@
"entrypoint": "/usr/local/share/desktop-init.sh", "entrypoint": "/usr/local/share/desktop-init.sh",
"containerEnv": { "containerEnv": {
"DISPLAY": ":1" "DISPLAY": ":1"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "docker-from-docker", "id": "docker-from-docker",
"version": "1.0.5", "version": "1.0.6",
"name": "Docker (Docker-from-Docker)", "name": "Docker (Docker-from-Docker)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-from-docker", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/docker-from-docker",
"descripton": "Re-use the host docker socket, adding the Docker CLI to a container. Feature invokes a script to enable using a forwarded Docker socket within a container to run Docker commands.", "descripton": "Re-use the host docker socket, adding the Docker CLI to a container. Feature invokes a script to enable using a forwarded Docker socket within a container to run Docker commands.",
...@@ -47,5 +47,8 @@ ...@@ -47,5 +47,8 @@
"target": "/var/run/docker-host.sock", "target": "/var/run/docker-host.sock",
"type": "bind" "type": "bind"
} }
],
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
] ]
} }
...@@ -53,5 +53,8 @@ ...@@ -53,5 +53,8 @@
"target": "/var/lib/docker", "target": "/var/lib/docker",
"type": "volume" "type": "volume"
} }
],
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
] ]
} }
{ {
"id": "dotnet", "id": "dotnet",
"version": "1.0.7", "version": "1.0.8",
"name": "Dotnet CLI", "name": "Dotnet CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet",
"description": "Installs the .NET CLI. Provides option of installing sdk or runtime, and option of versions to install. Uses latest version of .NET sdk as defaults to install.", "description": "Installs the .NET CLI. Provides option of installing sdk or runtime, and option of versions to install. Uses latest version of .NET sdk as defaults to install.",
...@@ -37,5 +37,8 @@ ...@@ -37,5 +37,8 @@
"ms-dotnettools.csharp" "ms-dotnettools.csharp"
] ]
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "git-lfs", "id": "git-lfs",
"version": "1.0.3", "version": "1.0.4",
"name": "Git Large File Support (LFS)", "name": "Git Large File Support (LFS)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-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.", "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.",
...@@ -14,5 +14,8 @@ ...@@ -14,5 +14,8 @@
"default": "latest", "default": "latest",
"description": "Select version of Git LFS to install" "description": "Select version of Git LFS to install"
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "git", "id": "git",
"version": "1.0.4", "version": "1.0.5",
"name": "Git (from source)", "name": "Git (from source)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git",
"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.", "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.",
...@@ -19,5 +19,8 @@ ...@@ -19,5 +19,8 @@
"default": true, "default": true,
"description": "Install from PPA if available" "description": "Install from PPA if available"
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "github-cli", "id": "github-cli",
"version": "1.0.5", "version": "1.0.6",
"name": "GitHub CLI", "name": "GitHub CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/github-cli",
"description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.", "description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.",
...@@ -18,6 +18,9 @@ ...@@ -18,6 +18,9 @@
"type": "boolean", "type": "boolean",
"default": true "default": true
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "go", "id": "go",
"version": "1.0.8", "version": "1.0.9",
"name": "Go", "name": "Go",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/go", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/go",
"description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.",
...@@ -35,5 +35,8 @@ ...@@ -35,5 +35,8 @@
], ],
"securityOpt": [ "securityOpt": [
"seccomp=unconfined" "seccomp=unconfined"
],
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
] ]
} }
{ {
"id": "hugo", "id": "hugo",
"version": "1.0.5", "version": "1.0.6",
"name": "Hugo", "name": "Hugo",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/hugo", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/hugo",
"options": { "options": {
...@@ -16,5 +16,8 @@ ...@@ -16,5 +16,8 @@
"containerEnv": { "containerEnv": {
"HUGO_DIR": "/usr/local/hugo", "HUGO_DIR": "/usr/local/hugo",
"PATH": "/usr/local/hugo/bin:${PATH}" "PATH": "/usr/local/hugo/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "java", "id": "java",
"version": "1.0.10", "version": "1.0.11",
"name": "Java (via SDKMAN!)", "name": "Java (via SDKMAN!)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/java", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/java",
"description": "Installs Java, SDKMAN! (if not installed), and needed dependencies.", "description": "Installs Java, SDKMAN! (if not installed), and needed dependencies.",
...@@ -54,5 +54,8 @@ ...@@ -54,5 +54,8 @@
"SDKMAN_DIR": "/usr/local/sdkman", "SDKMAN_DIR": "/usr/local/sdkman",
"JAVA_HOME": "/usr/local/sdkman/candidates/java/current", "JAVA_HOME": "/usr/local/sdkman/candidates/java/current",
"PATH": "/usr/local/sdkman/bin:/usr/local/sdkman/candidates/java/current/bin:/usr/local/sdkman/candidates/gradle/current/bin:/usr/local/sdkman/candidates/maven/current/bin:${PATH}" "PATH": "/usr/local/sdkman/bin:/usr/local/sdkman/candidates/java/current/bin:/usr/local/sdkman/candidates/gradle/current/bin:/usr/local/sdkman/candidates/maven/current/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "kubectl-helm-minikube", "id": "kubectl-helm-minikube",
"version": "1.0.4", "version": "1.0.5",
"name": "Kubectl, Helm, and Minkube", "name": "Kubectl, Helm, and Minkube",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube",
"description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.", "description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.",
...@@ -47,5 +47,8 @@ ...@@ -47,5 +47,8 @@
"target": "/home/vscode/.minikube", "target": "/home/vscode/.minikube",
"type": "volume" "type": "volume"
} }
],
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
] ]
} }
{ {
"id": "node", "id": "node",
"version": "1.0.7", "version": "1.0.8",
"name": "Node.js (via nvm) and yarn", "name": "Node.js (via nvm) and yarn",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/node", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/node",
"description": "Installs Node.js, nvm, yarn, and needed dependencies.", "description": "Installs Node.js, nvm, yarn, and needed dependencies.",
...@@ -40,5 +40,8 @@ ...@@ -40,5 +40,8 @@
"NVM_DIR": "/usr/local/share/nvm", "NVM_DIR": "/usr/local/share/nvm",
"NVM_SYMLINK_CURRENT": "true", "NVM_SYMLINK_CURRENT": "true",
"PATH": "/usr/local/share/nvm/current/bin:${PATH}" "PATH": "/usr/local/share/nvm/current/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "nvidia-cuda", "id": "nvidia-cuda",
"version": "1.0.3", "version": "1.0.4",
"name": "NVIDIA CUDA", "name": "NVIDIA CUDA",
"description": "Installs shared libraries for NVIDIA CUDA.", "description": "Installs shared libraries for NVIDIA CUDA.",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/nvidia-cuda",
...@@ -48,5 +48,8 @@ ...@@ -48,5 +48,8 @@
"default": "8.5.0.96", "default": "8.5.0.96",
"description": "Version of cuDNN to install" "description": "Version of cuDNN to install"
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "oryx", "id": "oryx",
"version": "1.0.7", "version": "1.0.8",
"name": "Oryx", "name": "Oryx",
"description": "Installs the oryx CLI", "description": "Installs the oryx CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx",
...@@ -12,5 +12,8 @@ ...@@ -12,5 +12,8 @@
"ORYX_DIR": "/usr/local/oryx", "ORYX_DIR": "/usr/local/oryx",
"DEBIAN_FLAVOR": "focal-scm", "DEBIAN_FLAVOR": "focal-scm",
"PATH": "/usr/local/oryx:${PATH}" "PATH": "/usr/local/oryx:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "php", "id": "php",
"version": "1.0.7", "version": "1.0.8",
"name": "PHP", "name": "PHP",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/php", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/php",
"options": { "options": {
...@@ -32,5 +32,8 @@ ...@@ -32,5 +32,8 @@
"containerEnv": { "containerEnv": {
"PHP_PATH": "/usr/local/php/current", "PHP_PATH": "/usr/local/php/current",
"PATH": "/usr/local/php/current/bin:${PATH}" "PATH": "/usr/local/php/current/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "powershell", "id": "powershell",
"version": "1.0.3", "version": "1.0.4",
"name": "PowerShell", "name": "PowerShell",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/powershell", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/powershell",
"description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.",
...@@ -15,5 +15,8 @@ ...@@ -15,5 +15,8 @@
"default": "latest", "default": "latest",
"description": "Select or enter a version of PowerShell." "description": "Select or enter a version of PowerShell."
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "python", "id": "python",
"version": "1.0.9", "version": "1.0.10",
"name": "Python", "name": "Python",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/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.", "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.",
...@@ -71,5 +71,8 @@ ...@@ -71,5 +71,8 @@
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint" "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint"
} }
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "ruby", "id": "ruby",
"version": "1.0.5", "version": "1.0.6",
"name": "Ruby (via rvm)", "name": "Ruby (via rvm)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/ruby",
"description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.", "description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.",
...@@ -30,5 +30,8 @@ ...@@ -30,5 +30,8 @@
"GEM_HOME": "/usr/local/rvm/gems/default", "GEM_HOME": "/usr/local/rvm/gems/default",
"MY_RUBY_HOME": "/usr/local/rvm/rubies/default", "MY_RUBY_HOME": "/usr/local/rvm/rubies/default",
"PATH": "/usr/local/rvm/gems/default/bin:/usr/local/rvm/gems/default@global/bin:/usr/local/rvm/rubies/default/bin:/usr/local/share/rbenv/bin:${PATH}" "PATH": "/usr/local/rvm/gems/default/bin:/usr/local/rvm/gems/default@global/bin:/usr/local/rvm/rubies/default/bin:/usr/local/share/rbenv/bin:${PATH}"
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "rust", "id": "rust",
"version": "1.0.7", "version": "1.0.8",
"name": "Rust", "name": "Rust",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/rust", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/rust",
"description": "Installs Rust, common Rust utilities, and their required dependencies", "description": "Installs Rust, common Rust utilities, and their required dependencies",
...@@ -56,5 +56,8 @@ ...@@ -56,5 +56,8 @@
], ],
"securityOpt": [ "securityOpt": [
"seccomp=unconfined" "seccomp=unconfined"
],
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
] ]
} }
{ {
"id": "sshd", "id": "sshd",
"version": "1.0.4", "version": "1.0.5",
"name": "SSH server", "name": "SSH server",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/sshd", "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.", "description": "Adds a SSH server into a container so that you can use an external terminal, sftp, or SSHFS to interact with it.",
...@@ -14,5 +14,8 @@ ...@@ -14,5 +14,8 @@
"description": "Currently unused." "description": "Currently unused."
} }
}, },
"entrypoint": "/usr/local/share/ssh-init.sh" "entrypoint": "/usr/local/share/ssh-init.sh",
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
{ {
"id": "terraform", "id": "terraform",
"version": "1.0.6", "version": "1.0.7",
"name": "Terraform, tflint, and TFGrunt", "name": "Terraform, tflint, and TFGrunt",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform",
"description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.", "description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.",
...@@ -48,5 +48,8 @@ ...@@ -48,5 +48,8 @@
"azureTerraform.terminal": "integrated" "azureTerraform.terminal": "integrated"
} }
} }
} },
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment