You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
FROM golang:1.24 as builder
1
+
FROM golang:1.25 as builder
2
2
WORKDIR /workspace
3
3
COPY go.mod go.mod
4
4
COPY go.sum go.sum
@@ -11,7 +11,7 @@ ARG TARGETARCH
11
11
ARG LDFLAGS=""
12
12
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} GO111MODULE=on go build -trimpath -ldflags="${LDFLAGS}" -gcflags "${GCFLAGS}" -a -o capsule-proxy main.go
13
13
14
-
FROM golang:1.24 as dlv
14
+
FROM golang:1.25 as dlv
15
15
RUN CGO_ENABLED=0 go install github.com/go-delve/delve/cmd/dlv@latest
0 commit comments