aboutsummaryrefslogtreecommitdiff
path: root/src/conda/devcontainer-feature.json
blob: 50b0940985f028dcbb7d2460ee088c22d5a5ffeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "id": "conda",
    "version": "1.0.1",
    "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:"
    }
}