I was running the following devcontainer.json:
{
"image": "mcr.microsoft.com/devcontainers/python:3.11",
"customizations": {
"vscode": {
"extensions": [
]
}
}
}
I am not specifying any extensions, however in the vscode container remote extensions I see the following are installed:
- ESLint
- isort
- Jupyter
- Jupyter Cell Tags
- Jupyter Notebook Renderers
- Jupyter Slide Show
- Jupyter Keymap
- Python
I am assuming that the image mcr.microsoft.com/devcontainers/python:3.11 ships these extensions. I was just after a little more information on where these come from.
I was running the following
devcontainer.json:{ "image": "mcr.microsoft.com/devcontainers/python:3.11", "customizations": { "vscode": { "extensions": [ ] } } }I am not specifying any extensions, however in the vscode container remote extensions I see the following are installed:
I am assuming that the image
mcr.microsoft.com/devcontainers/python:3.11ships these extensions. I was just after a little more information on where these come from.