fix(devcontainer): bump Go version to 1.25 in devcontainer base image

The devcontainer was using Go 1.23 but go.mod requires Go 1.25.0.
This caused 'go mod tidy' to fail in the devcontainer environment.

Signed-off-by: Jan Larwig <jan@larwig.com>
This commit is contained in:
Br1an67 2026-03-06 18:39:51 +00:00 committed by Jan Larwig
parent 75ff537915
commit c7dff65dee
No known key found for this signature in database
GPG Key ID: C2172BFA220A037A
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM mcr.microsoft.com/vscode/devcontainers/go:1-1.23
FROM mcr.microsoft.com/vscode/devcontainers/go:1-1.25
SHELL ["/bin/bash", "-o", "pipefail", "-c"]