Skip to content

Commit 2ed3902

Browse files
committed
fix: CVE-2025-61729 - update contrib Dockerfile to use Go 1.25.6
Signed-off-by: Shubham Bhardwaj <shubbhar@redhat.com>
1 parent 145f66d commit 2ed3902

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

contrib/tkn-image/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ARG GOLANG_VERSION=1.17.13
2-
ARG DEBIAN_VERSION=10
1+
ARG GOLANG_VERSION=1.25.6
2+
ARG DEBIAN_VERSION=12
33

4-
FROM golang:${GOLANG_VERSION} as builder
4+
FROM golang:${GOLANG_VERSION} AS builder
55
ARG RELEASE_VERSION=
66
COPY . /go/src/github.com/tektoncd/cli
77
WORKDIR /go/src/github.com/tektoncd/cli
88
RUN make RELEASE_VERSION=${RELEASE_VERSION} bin/tkn
99

10-
FROM debian:${DEBIAN_VERSION} as tkn
10+
FROM debian:${DEBIAN_VERSION} AS tkn
1111
COPY --from=builder /go/src/github.com/tektoncd/cli/bin/tkn /usr/bin

0 commit comments

Comments
 (0)