devcontainer-template.json 859 B

123456789101112131415161718192021222324252627
  1. {
  2. "id": "go",
  3. "version": "3.0.0",
  4. "name": "Go",
  5. "description": "Develop Go based applications. Includes appropriate runtime args, Go, common tools, extensions, and dependencies.",
  6. "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/go",
  7. "publisher": "Dev Container Spec Maintainers",
  8. "licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
  9. "options": {
  10. "imageVariant": {
  11. "type": "string",
  12. "description": "Go version:",
  13. "proposals": [
  14. "1-bookworm",
  15. "1.21-bookworm",
  16. "1.20-bookworm",
  17. "1-bullseye",
  18. "1.21-bullseye",
  19. "1.20-bullseye"
  20. ],
  21. "default": "1.21-bullseye"
  22. }
  23. },
  24. "platforms": [
  25. "Go"
  26. ]
  27. }