initial version

This commit is contained in:
2026-02-17 00:13:26 +01:00
parent fed1844282
commit 4f7227c0e9
13 changed files with 316 additions and 190 deletions

View File

@@ -1,7 +1,7 @@
{
"image": "ubuntu:24.04", // for cuda support: nvidia/cuda:13.1.0-devel-ubuntu24.04
"containerEnv": {
"CONAN_USR": "t", // need to be filled
"CONAN_USR": "", // need to be filled
"CONAN_PSW": "" // need to be filled,
},
"features": {
@@ -46,8 +46,7 @@
"runArgs": [
"--network=host",
"-e HOST_UID=$(id -u)",
"-e HOST_GID=$(id -g)",
"--gpus=all"
"-e HOST_GID=$(id -g)"
],
"postStartCommand": ".devcontainer/postStartCommand.sh"
}

View File

@@ -148,6 +148,7 @@ configure_persistence() {
}
# Add Local Bin to Path
local path_export='export PATH="$HOME/.local/bin:$PATH"'
append_if_missing "$HOME/.bashrc" "$path_export"
append_if_missing "$zshrc" "$path_export"