added devcontainer

This commit is contained in:
hugo LAMY
2025-03-06 00:30:38 +00:00
parent 98e40d5bb8
commit 8a28799aac
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"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!'"
}