forked from microsoft/github-copilot-vibe-coding-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
66 lines (59 loc) · 1.9 KB
/
devcontainer.json
File metadata and controls
66 lines (59 loc) · 1.9 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
{
"name": "GitHub Copilot Bootcamp",
"image": "mcr.microsoft.com/devcontainers/dotnet:8.0-noble",
"features": {
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/devcontainers/features/common-utils:latest": {},
"ghcr.io/devcontainers/features/dotnet:latest": {
"version": "9.0"
},
"ghcr.io/devcontainers/features/azure-cli:latest": {
"extensions": "account,containerapp,deploy-to-azure,subscription"
},
"ghcr.io/devcontainers/features/docker-in-docker:latest": {},
"ghcr.io/devcontainers/features/github-cli:latest": {},
"ghcr.io/devcontainers/features/java:latest": {
"installGradle": true,
"installMaven": true,
"version": "21"
},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:latest": {},
"ghcr.io/devcontainers/features/node:latest": {},
"ghcr.io/devcontainers/features/python:latest": {},
"ghcr.io/prom3theu5/aspirational-manifests/aspirate:latest": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/common-utils"
],
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-bicep",
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.autopep8",
"ms-vscode.vscode-node-azure-pack",
"redhat.vscode-yaml",
"vscjava.vscode-java-pack"
],
"settings": {
"chat.agent.enabled": true
}
}
},
"remoteUser": "vscode",
"onCreateCommand": "./.devcontainer/on-create.sh > ~/on-create.log",
"hostRequirements": {
"memory": "8gb"
}
}