forked from Azure-Samples/contoso-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
38 lines (38 loc) · 1.19 KB
/
devcontainer.json
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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Contoso Chat (v2)",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {
"installBicep": true,
"extensions": "ml"
},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.8.0"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-toolsai.prompty@prerelease",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-toolsai.jupyter",
"ms-azuretools.vscode-bicep",
"rogalmic.bash-debug"
]
}
},
"postCreateCommand": "bash .devcontainer/setup.sh",
"forwardPorts": [
8000
]
}