-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathdevcontainer.json
More file actions
71 lines (71 loc) · 1.96 KB
/
devcontainer.json
File metadata and controls
71 lines (71 loc) · 1.96 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"build": {
"dockerfile": "./Dockerfile",
"context": "."
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "codespace",
"userUid": "1000",
"userGid": "1000"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.11.9",
"installJupyterLab": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
},
"ghcr.io/devcontainers/features/git-lfs:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
}
"ghcr.io/szkiba/devcontainer-features/cdo:1": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/git",
"ghcr.io/devcontainers/features/node",
"ghcr.io/devcontainers/features/python",
"ghcr.io/devcontainers/features/git-lfs",
"ghcr.io/devcontainers/features/github-cli"
],
"remoteUser": "codespace",
"containerUser": "codespace",
"onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/bootstrap",
"customizations": {
"codespaces": {
"disableAutomaticConfiguration": true,
"openFiles": [
"README.md"
]
},
"vscode": {
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"ms-toolsai.prompty"
],
"settings": {
/*
NOTE: excluding these Python environments causes Jupyter to select the remaining environment by default
The default environment will be: /usr/local/python/current/bin/python
*/
"jupyter.kernels.excludePythonEnvironments": [
"/usr/local/python/current/bin/python3",
"/usr/bin/python3",
"/bin/python3"
],
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
}
}
}
}
}