Files
42_EXT_03_42chips/.devcontainer/devcontainer.json
2025-03-06 00:30:38 +00:00

9 lines
400 B
JSON

{
"name": "Ubuntu DevContainer",
"dockerFile": "Dockerfile", // Reference to your Dockerfile
"context": ".", // The context is the root of your project
"workspaceFolder": "/workspace", // Where VSCode will mount your current folder inside the container
"mounts": ["source=${localWorkspaceFolder},target=/workspace,type=bind"],
"postCreateCommand": "echo 'Devcontainer setup complete!'"
}