mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-27 05:53:10 +00:00
20 lines
428 B
TOML
20 lines
428 B
TOML
|
|
# Ubuntu-based developer environment — for teams requiring Ubuntu toolchains.
|
||
|
|
#
|
||
|
|
# Usage:
|
||
|
|
# karapace build examples/ubuntu-dev.toml
|
||
|
|
# karapace enter <env_id>
|
||
|
|
|
||
|
|
manifest_version = 1
|
||
|
|
|
||
|
|
[base]
|
||
|
|
image = "ubuntu/24.04" # Ubuntu Noble Numbat
|
||
|
|
|
||
|
|
[system]
|
||
|
|
packages = ["git", "curl", "build-essential", "cmake", "python3", "python3-pip", "nodejs", "npm"]
|
||
|
|
|
||
|
|
[mounts]
|
||
|
|
workspace = "~/projects:/workspace"
|
||
|
|
|
||
|
|
[runtime]
|
||
|
|
backend = "namespace"
|