chore: add devcontainer
All checks were successful
Go build / build (1.20.x) (push) Successful in 7m4s
Go build / build (1.21.x) (push) Successful in 3m55s
Renovate / renovate (push) Successful in 21s

This commit is contained in:
Peter 2023-12-03 17:50:17 +01:00
parent 06034fd860
commit e95d4a784b
No known key found for this signature in database
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,27 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
"name": "Go",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/go:1-1.21-bullseye",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// 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": "go version",
// Configure tool-specific properties.
// "customizations": {},
"customizations": {
"vscode": {
"extensions": []
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}