feat: added devcontainer.json to use the previously uploaded dockerfile in a devpod

This commit is contained in:
unai_71 2026-03-10 16:40:15 +01:00
parent 8511404afa
commit aea0cbc5e2

View File

@ -0,0 +1,15 @@
{
"name": "C++ DEV",
"build": {
"dockerfile": "Dockerfile"
},
"remoteUser": "dev",
"features": {
"ghcr.io/duduribeiro/devcontainer-features/neovim:1": {
"version": "stable"
}
},
"mounts": [
"source=${env:HOME}/.config/nvim,target=/home/dev/.config/nvim,type=bind"
]
}