/
githubmirror
/
tldr
Обзор
Документация
Войти
/
githubmirror
/
tldr
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.devcontainer/devcontainer.json
36 строк
1 KB
dependabot[bot]
build(deps): bump ghcr.io/devcontainers/features/node from 1.7.1 to 2.0.0 (#22287)
02 май 2026, 07:52
Не верифицирован
02 май 2026, 07:52
957da06
Код
Авторство
О чём код?
{ "name": "tldr-pages", "image": "mcr.microsoft.com/devcontainers/base:ubuntu", // Use Microsoft's Ubuntu Base image for the dev container "features": { // Use Node, Python and GitHub CLI features in the dev container "ghcr.io/devcontainers/features/node:2": {}, "ghcr.io/devcontainers/features/python:1": {}, "ghcr.io/devcontainers/features/github-cli:1": {} }, "privileged": false, // Run the container unprivileged "onCreateCommand": { "install-python-packages": "pip install -r requirements.txt", // Install Python dependencies in the dev container "install-node-packages": "npm install" // Install NPM dependencies in the dev container }, "customizations": { "vscode": { "settings": { // Define suggested settings for the dev container "resmon.show.battery": false, "resmon.show.cpufreq": false }, "extensions": [ // Define suggested extensions to preinstall in the dev container "EditorConfig.EditorConfig", "ms-python.python", "ms-python.vscode-pylance", "ms-python.flake8", "GitHub.vscode-pull-request-github", "github.vscode-github-actions", "DavidAnson.vscode-markdownlint" ] } } }