-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 1020 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 1020 Bytes
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
28
29
30
31
32
//
// MAIN PRODUCTION DEVCONTAINER CONFIG
// Uses image that is pre-built and pushed to GitHub
// See .github/.devcontainer/devcontainer.json for build
//
{
"name": "nf-aggregate",
"image": "ghcr.io/nextflow-io/training:latest",
"workspaceFolder": "/workspaces/nf-aggregate",
"remoteUser": "root",
"remoteEnv": {
// Nextflow installation version
"NXF_HOME": "/workspaces/.nextflow",
"NXF_EDGE": "0",
"NXF_VER": "24.10.4",
// Other env vars
"HOST_PROJECT_PATH": "/workspaces/nf-aggregate",
"SHELL": "/bin/bash" // Ush bash
},
"onCreateCommand": "bash .devcontainer/setup.sh",
"customizations": {
"vscode": {
"extensions": ["nf-core.nf-core-extensionpack"],
// Use Python from conda
"settings": {
"python.defaultInterpreterPath": "/opt/conda/bin/python"
},
// Use bash
"terminal.integrated.defaultProfile.linux": "bash"
}
}
}