Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Support Go 1.22
  • Loading branch information
samruddhikhandale committed Feb 7, 2024
commit 49103a5890682f2eaf4161765e05c4f8bbfd9e9b
3 changes: 1 addition & 2 deletions src/go/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# [Choice] Go version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): 1, 1.21, 1.20, 1-bookworm, 1.21-bookworm, 1.20-bookworm, 1-bullseye, 1.21-bullseye, 1.20-bullseye
ARG VARIANT=1.21-bookworm
ARG VARIANT=1.22-bookworm
FROM golang:${VARIANT}

# [Optional] Uncomment the next line to use go get to install anything else you need
Expand Down
3 changes: 2 additions & 1 deletion src/go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
| *Categories* | Core, Languages |
| *Definition type* | Dockerfile |
| *Published images* | mcr.microsoft.com/devcontainers/go |
| *Available image variants* | 1 / 1-bookworm, 1.21 / 1.21-bookworm, 1.20 / 1.20-bookworm, 1-bullseye, 1.21-bullseye, 1.20-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/go/tags/list)) |
| *Available image variants* | 1 / 1-bookworm, 1.22 / 1.22-bookworm, 1.21 / 1.21-bookworm, 1.20 / 1.20-bookworm, 1-bullseye, 1.22-bullseye, 1.21-bullseye, 1.20-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/go/tags/list)) |
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bookworm`, and `bullseye` variants |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Debian |
Expand All @@ -24,6 +24,7 @@ You can directly reference pre-built versions of `Dockerfile` by using the `imag

- `mcr.microsoft.com/devcontainers/go` (latest)
- `mcr.microsoft.com/devcontainers/go:1` (or `1-bookworm`, `1-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/go:1.22` (or `1.22-bookworm`, `1.22-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/go:1.21` (or `1.21-bookworm`, `1.21-bullseye` to pin to an OS version)
- `mcr.microsoft.com/devcontainers/go:1.20` (or `1.20-bookworm`, `1.20-bullseye` to pin to an OS version)

Expand Down
21 changes: 17 additions & 4 deletions src/go/manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
{
"version": "1.1.7",
"variants": [
"1.22-bookworm",
"1.21-bookworm",
"1.20-bookworm",
"1.22-bullseye",
"1.21-bullseye",
"1.20-bullseye"
],
"build": {
"latest": "1.21-bookworm",
"latest": "1.22-bookworm",
"rootDistro": "debian",
"tags": [
"go:${VERSION}-${VARIANT}"
],
"architectures": {
"1.22-bookworm": [
"linux/amd64",
"linux/arm64"
],
"1.21-bookworm": [
"linux/amd64",
"linux/arm64"
],
"1.20-bookworm": [
"linux/amd64",
"linux/arm64"
],
"1.22-bullseye": [
"linux/amd64",
"linux/arm64"
],
"1.21-bullseye": [
"linux/amd64",
Expand All @@ -31,15 +41,18 @@
]
},
"variantTags": {
"1.21-bookworm": [
"go:${VERSION}-1.21",
"1.22-bookworm": [
"go:${VERSION}-1.22",
"go:${VERSION}-1",
"go:${VERSION}-1-bookworm",
"go:${VERSION}-bookworm"
],
"1.21-bullseye": [
"1.22-bullseye": [
"go:${VERSION}-1-bullseye",
"go:${VERSION}-bullseye"
],
"1.21-bookworm": [
"go:${VERSION}-1.21"
],
"1.20-bookworm": [
"go:${VERSION}-1.20"
Expand Down