devcontainer.json 826 B

1234567891011121314151617181920212223242526
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/cpp
  3. {
  4. "name": "C++",
  5. "build": {
  6. "dockerfile": "Dockerfile"
  7. },
  8. "features": {
  9. "ghcr.io/devcontainers-contrib/features/wget-apt-get:1": {}
  10. }
  11. // Features to add to the dev container. More info: https://containers.dev/features.
  12. // "features": {},
  13. // Use 'forwardPorts' to make a list of ports inside the container available locally.
  14. // "forwardPorts": [],
  15. // Use 'postCreateCommand' to run commands after the container is created.
  16. // "postCreateCommand": "gcc -v",
  17. // Configure tool-specific properties.
  18. // "customizations": {},
  19. // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
  20. // "remoteUser": "root"
  21. }