autoBIGS.cli/.devcontainer/devcontainer.json
Harrison Deng 19b23539b3
Some checks reported errors
automlst.cli/pipeline/head Something is wrong with the build of this commit
Added bioconda and personal conda repos to channels
2025-02-26 15:22:32 +00:00

35 lines
976 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/miniconda
{
"name": "Miniconda (Python 3)",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip install -e .",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"mechatroner.rainbow-csv"
]
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"containerEnv": {
"PIP_EXTRA_INDEX_URL": "https://git.reslate.systems/api/packages/ydeng/pypi/simple"
}
}