// https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/cpp { "name": "Node.js + C++", "build": { "dockerfile": "Dockerfile", // Node v14 "args": { "VARIANT": "14" } }, "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"], // Set *default* container specific settings.json values on container create. "settings": {}, // Add the IDs of extensions you want installed when the container is created. "extensions": [ "esbenp.prettier-vscode", "ms-vscode.cpptools" ], // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "gcc -v", // Comment out this line to run as root instead. "remoteUser": "node" }