Skip to content

Commit 3ed0fb4

Browse files
committed
Update
Signed-off-by: Yuri Shkuro <github@ysh.us>
1 parent 5f6a080 commit 3ed0fb4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright (c) 2025 The Jaeger Authors.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.24.1-alpine AS build
4+
FROM golang:1.25.5-alpine@sha256:ac09a5f469f307e5da71e766b0bd59c9c49ea460a528cc3e6686513d64a6f1fb AS build
55
ARG TARGETARCH
6-
ENV GOPATH /go
6+
ENV GOPATH=/go
77
RUN apk add --update --no-cache ca-certificates make git build-base mailcap
88

99
WORKDIR /go/src/debug-delve

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module debug-delve
22

3-
go 1.24.1
3+
go 1.25.0
44

55
require github.com/go-delve/delve v1.26.0
66

tools.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2025 The Jaeger Authors.
1+
// Copyright (c) 2024 The Jaeger Authors.
22
// SPDX-License-Identifier: Apache-2.0
33

44
//go:build tools
@@ -8,6 +8,7 @@ package tools
88
// This file follows the recommendation at
99
// https://go.dev/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
1010
// on how to pin tooling dependencies to a go.mod file.
11+
// This ensures that all systems use the same version of tools in addition to regular dependencies.
1112

1213
import (
1314
_ "github.com/go-delve/delve/cmd/dlv"

0 commit comments

Comments
 (0)