Add dev container configuration (#23)

* add devcontainer support files
* update rbuild to look in /usr/bin/openscad-nightly for openscad-nightly
This commit is contained in:
Christopher Dove
2025-01-16 01:45:36 +00:00
committed by GitHub
parent bb37a3fa34
commit 3b1de0eab5
3 changed files with 58 additions and 5 deletions

View File

@ -0,0 +1,19 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"build": { "dockerfile": "dockerfile" },
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
"version": "latest"
}
},
"customizations": {
},
"remoteUser": "vscode",
"mounts": [
"source=rackstack-bashhistory,target=/commandhistory,type=volume"
]
}