mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
Synchronized from bootc-dev/infra@b23aa64010. Signed-off-by: bootc-dev Bot <bot@bootc.dev>
29 lines
668 B
JSON
29 lines
668 B
JSON
{
|
|
"name": "bootc-devenv-debian",
|
|
// TODO override this back to prod image
|
|
"image": "ghcr.io/bootc-dev/devenv-debian",
|
|
"customizations": {
|
|
"vscode": {
|
|
// Abitrary, but most of our code is in one of these two
|
|
"extensions": [
|
|
"rust-lang.rust-analyzer",
|
|
"golang.Go"
|
|
]
|
|
}
|
|
},
|
|
"features": {},
|
|
"runArgs": [
|
|
// Because we want to be able to run podman and also use e.g. /dev/kvm
|
|
// among other things
|
|
"--privileged"
|
|
],
|
|
"postCreateCommand": {
|
|
// Our init script
|
|
"devenv-init": "sudo /usr/local/bin/devenv-init.sh"
|
|
},
|
|
"remoteEnv": {
|
|
"PATH": "${containerEnv:PATH}:/usr/local/cargo/bin"
|
|
}
|
|
}
|
|
|