1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/.devcontainer/devcontainer.json

17 lines
363 B
JSON
Raw Permalink Normal View History

2024-02-28 19:46:29 -03:00
{
"name": "ubuntu",
"image": "docker.io/library/ubuntu",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools-extension-pack"
]
}
},
2024-02-28 19:46:29 -03:00
"features": {
2024-04-15 19:07:38 -03:00
"ghcr.io/devcontainers/features/desktop-lite:1": {}
2024-02-28 19:57:03 -03:00
},
"onCreateCommand": "apt update && apt install sudo git",
2024-02-28 19:50:22 -03:00
"postCreateCommand": "sudo ./build.sh"
2024-04-15 19:07:38 -03:00
}