/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.1.0
.devcontainer/devcontainer.json
24 строки
822 B
Jonathan Schwender
devcontainer: Use new prebuilt devcontainer image. (#43139)
11 мар 2026, 20:27
Не верифицирован
11 мар 2026, 20:27
04ca254
Код
Авторство
О чём код?
// For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu { "name": "Ubuntu", "image": "ghcr.io/servo/servo/devcontainer-ubuntu:latest", // Alternatively, uncomment the "build" property below to build the image from the Dockerfile in this folder. // "build": { // "dockerfile": "Ubuntu.Dockerfile", // "context": ".." // }, // Most dependencies are installed in the image, but we run mach bootstrap to ensure // the environment matches what's expected in the current servo version, which might // have changed since the image was built. "postCreateCommand": "./mach bootstrap --yes", "containerEnv": { "CC": "clang", "CXX": "clang++", "UV_PROJECT_ENVIRONMENT": ".devcontainer-venv" } }