aboutsummaryrefslogtreecommitdiff
path: root/src/conda/devcontainer-feature.json
diff options
context:
space:
mode:
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:"
+ }
+}