aboutsummaryrefslogtreecommitdiff
path: root/src/conda/devcontainer-feature.json
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-09-01 19:41:22 +0300
committerGitHub <noreply@github.com>2022-09-01 19:41:22 +0300
commit14d98b7795ca6f7333cb168ca7be2fd4baf1a882 (patch)
tree739f540408557d29d1782924795b5cc35ea7f8e7 /src/conda/devcontainer-feature.json
parentd50ef0016a2f8b3baeb88cd26f508f3b4b204573 (diff)
Adds a new Conda Feature (#127)
* add conda Feature * addCondaForge
Diffstat (limited to 'src/conda/devcontainer-feature.json')
-rw-r--r--src/conda/devcontainer-feature.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/conda/devcontainer-feature.json b/src/conda/devcontainer-feature.json
new file mode 100644
index 0000000..81999a7
--- /dev/null
+++ b/src/conda/devcontainer-feature.json
@@ -0,0 +1,27 @@
+{
+ "id": "conda",
+ "version": "1.0.0",
+ "name": "Conda - A cross-platform, language-agnostic binary package manager",
+ "documentationURL": "https://github.com/devcontainers/features/tree/main/src/conda",
+ "options": {
+ "version": {
+ "type": "string",
+ "proposals": [
+ "latest",
+ "4.11.0",
+ "4.12.0"
+ ],
+ "default": "latest",
+ "description": "Select or enter a conda version."
+ },
+ "addCondaForge": {
+ "type": "boolean",
+ "default": false,
+ "description": "Add conda-forge channel to the config?"
+ }
+ },
+ "containerEnv": {
+ "CONDA_DIR": "/opt/conda",
+ "PATH": "${PATH}:${CONDA_DIR}/bin:"
+ }
+}