-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathdevcontainer.json
37 lines (37 loc) · 1.11 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
{
"name": ".NET ML AI Environment",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1.1.0": {},
"ghcr.io/devcontainers/features/github-cli:1.0.9": {}
},
"customizations":{
"vscode": {
"extensions": [
"ms-dotnettools.dotnet-interactive-vscode",
"ms-azuretools.azure-dev",
"ms-vscode.azurecli"
]
}
},
"containerEnv": {
"AOAI_DEPLOYMENTID": "",
"AOAI_EMBEDDINGS_DEPLOYMENTID": "",
"AOAI_ENDPOINT": "",
"AOAI_KEY": "",
"DOCUMENT_KEY": "",
"DOCUMENT_ENDPOINT": "",
"VISION_TRAINING_KEY": "",
"VISION_TRAINING_ENDPOINT": "",
"VISION_PREDICTION_KEY": "",
"VISION_PREDICTION_ENDPOINT": "",
"VISION_PREDICTION_RESOURCE_ID": ""
},
"postCreateCommand": [
"cd ./Artificial Intelligence and Machine Learning/sample-code/scripts",
"chmod +x download-data.sh",
"./download-data.sh"
]
}