Skip to content

Commit fd5f294

Browse files
committed
Go 1.25.4
1 parent 5b31450 commit fd5f294

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
FROM golang:1.24.5
1+
# https://go.dev/doc/devel/release
2+
#
3+
# NOTE: chores on Go version bump:
4+
# - bump Delve as well (looks like the `MAJOR.MINOR` must match, patch-version is for Delve itself)
5+
#
6+
FROM golang:1.25.4
27

38
WORKDIR /workspace
49

@@ -16,7 +21,7 @@ WORKDIR /workspace
1621
# and if we bind mount workspace from outside of container Git complains if container uid doesn't match that of files.
1722

1823
RUN apt update && apt install -y zip \
19-
&& go install github.com/go-delve/delve/cmd/dlv@v1.24.2 \
24+
&& go install github.com/go-delve/delve/cmd/dlv@v1.25.2 \
2025
&& go install golang.org/x/tools/cmd/goimports@latest \
2126
&& go install golang.org/x/tools/cmd/godoc@latest \
2227
&& go install golang.org/x/tools/gopls@latest \

0 commit comments

Comments
 (0)