Merge pull request #51267 from robmry/delve-1.25.2

Dockerfile: upgrade Delve to v1.25.2
This commit is contained in:
Rob Murray
2025-10-22 15:03:30 +01:00
committed by GitHub

View File

@@ -130,7 +130,7 @@ RUN git init . && git remote add origin "https://github.com/go-delve/delve.git"
# from the https://github.com/go-delve/delve repository.
# It can be used to run Docker with a possibility of
# attaching debugger to it.
ARG DELVE_VERSION=v1.25.0
ARG DELVE_VERSION=v1.25.2
RUN git fetch -q --depth 1 origin "${DELVE_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
FROM base AS delve-supported