Skip to content

Commit 94d36cc

Browse files
committed
fix(docker): pin delve to v1.26.3 in Dockerfile.development
1 parent c9b347b commit 94d36cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile.development

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ RUN apk add --no-cache jq
1818
COPY --from=build /src/stellar-disbursement-platform /app/github.com/stellar/stellar-disbursement-platform
1919
# Build a debug version of the binary
2020
RUN go build -gcflags="all=-N -l" -o stellar-disbursement-platform .
21-
# Install Delve
22-
RUN go install github.com/go-delve/delve/cmd/dlv@latest
21+
# Install Delve (pinned: v1.27+ requires Go >= 1.25, but this image is on Go 1.24.4)
22+
RUN go install github.com/go-delve/delve/cmd/dlv@v1.26.3
2323
# Ensure the binary has executable permissions
2424
RUN chmod +x /app/github.com/stellar/stellar-disbursement-platform/stellar-disbursement-platform
2525
EXPOSE 8001 2345

0 commit comments

Comments
 (0)