Files
edk2-upstream/.devcontainer/devcontainer.json
Rebecca Cran b0c5781671 .devcontainer: bump Fedora version to 39
Fedora 35 is EOL. Use Fedora 39 instead: don't use 40 for now since it
comes with gcc 14 which still has some problems building edk2.

Fix the git command to disable the safe directory checks.

Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
2024-06-18 11:32:59 +00:00

17 lines
502 B
JSON

{
"image": "ghcr.io/tianocore/containers/fedora-39-dev:latest",
"postCreateCommand": "git config --global --add safe.directory '*' && pip install --upgrade -r pip-requirements.txt",
"customizations": {
"vscode": {
"extensions": [
"DavidAnson.vscode-markdownlint",
"ms-azuretools.vscode-docker",
"ms-vscode-remote.remote-containers",
"ms-vscode.cpptools",
"walonli.edk2-vscode",
"zachflower.uncrustify"
]
}
}
}