1 parent c9b347b commit 94d36ccCopy full SHA for 94d36cc
1 file changed
Dockerfile.development
@@ -18,8 +18,8 @@ RUN apk add --no-cache jq
18
COPY --from=build /src/stellar-disbursement-platform /app/github.com/stellar/stellar-disbursement-platform
19
# Build a debug version of the binary
20
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
+# Install Delve (pinned: v1.27+ requires Go >= 1.25, but this image is on Go 1.24.4)
+RUN go install github.com/go-delve/delve/cmd/dlv@v1.26.3
23
# Ensure the binary has executable permissions
24
RUN chmod +x /app/github.com/stellar/stellar-disbursement-platform/stellar-disbursement-platform
25
EXPOSE 8001 2345
0 commit comments