-
Notifications
You must be signed in to change notification settings - Fork 627
Expand file tree
/
Copy pathdevcontainer.json
More file actions
54 lines (51 loc) · 1.61 KB
/
devcontainer.json
File metadata and controls
54 lines (51 loc) · 1.61 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
{
"name": "Chat with your data",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {
"extensions": "ml",
"installBicep": true,
"version": "latest",
"bicepVersion": "latest"
},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/jlaundry/devcontainer-features/azure-functions-core-tools:1": {},
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/rchaganti/vsc-devcontainer-features/azurebicep:1.0.5": {}
},
"postCreateCommand": "./.devcontainer/setupEnv.sh",
"customizations": {
"vscode": {
"extensions": [
"github.vscode-pull-request-github",
"github.vscode-github-actions",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-bicep",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-python.black-formatter",
"ms-python.vscode-pylance",
"ms-python.pylint",
"ms-toolsai.jupyter",
"ms-vscode.vscode-node-azure-pack",
"TeamsDevApp.ms-teams-vscode-extension",
"zeshuaro.vscode-python-poetry",
"prompt-flow.prompt-flow"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.pythonPath": "/usr/local/bin/python",
"remote.autoForwardPortsFallback": 0,
"remote.autoForwardPortsSource": "process"
}
}
},
"remoteEnv": {
// the original host directory which is needed for volume mount commands from inside the container (Docker in Docker)
"HOST_DOCKER_FOLDER": "${localWorkspaceFolder}/docker"
}
}