Update devcontainer VARIANT to 1-trixie (#5204)

### PR Description

The previous `1-bullseye` did not have the required go version 1.25.0
This commit is contained in:
Stefan Haller 2026-01-17 11:59:37 +01:00 committed by GitHub
commit 19605ad476
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
# adapted from https://github.com/devcontainers/images/blob/main/src/go/.devcontainer/Dockerfile
# [Choice] Go version (use -bullseye variants on local arm64/Apple Silicon): 1, 1.19, 1.18, 1-bullseye, 1.19-bullseye, 1.18-bullseye, 1-buster, 1.19-buster, 1.18-buster
ARG VARIANT=1-bullseye
ARG VARIANT=1-trixie
FROM golang:${VARIANT}
RUN go install mvdan.cc/gofumpt@latest