Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/docker-in-docker/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,14 @@
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker"
]
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the Docker CLI (`docker`) pre-installed and available on the `PATH` for running and managing containers using a dedicated Docker daemon running inside the dev container."
}
]
}
}
},
"mounts": [
Expand Down
9 changes: 8 additions & 1 deletion src/docker-outside-of-docker/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker"
]
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the Docker CLI (`docker`) pre-installed and available on the `PATH` for running and managing containers using the Docker daemon on the host machine."
}
]
}
}
},
"mounts": [
Expand Down
11 changes: 11 additions & 0 deletions src/github-cli/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@
"default": true
}
},
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes the GitHub CLI (`gh`), which is pre-installed and available on the `PATH`. IMPORTANT: `gh api -f` does not support object values, use multiple `-f` flags with hierarchical keys and string values instead. When using GitHub actions `actions/upload-artifact` or `actions/download-artifact` use v4 or later."
}
]
}
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/git"
Expand Down
9 changes: 8 additions & 1 deletion src/node/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint"
]
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes `node`, `npm` and `eslint` pre-installed and available on the `PATH` for Node.js and JavaScript development."
}
]
}
}
},
"containerEnv": {
Expand Down
5 changes: 5 additions & 0 deletions src/python/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@
"ms-python.autopep8"
],
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes `python3` and `pip3` pre-installed and available on the `PATH`, along with the Python language extensions for Python development."
}
],
"python.defaultInterpreterPath": "/usr/local/python/current/bin/python",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
Expand Down
Loading