diff --git a/docker/debug/Dockerfile b/docker/debug/Dockerfile index 595b0836ae4..1cca45720d5 100644 --- a/docker/debug/Dockerfile +++ b/docker/debug/Dockerfile @@ -2,8 +2,9 @@ FROM golang:1.22.3-alpine AS build ARG TARGETARCH ENV GOPATH /go RUN apk add --update --no-cache ca-certificates make git build-base mailcap -# Remove once go-delve adds support for s390x (https://github.com/go-delve/delve/issues/2883) -RUN if [[ "$TARGETARCH" == "s390x" ]] ; then \ +# TODO: Remove s390x once go-delve adds support for it (https://github.com/go-delve/delve/issues/2883) +# TODO: Remove ppc64le once support is released (https://github.com/go-delve/delve/issues/1564) - not yet as of delve@v1.22.1 +RUN if [[ "$TARGETARCH" == "s390x" || "$TARGETARCH" == "ppc64le" ]] ; then \ touch /go/bin/dlv; \ else \ go install github.com/go-delve/delve/cmd/dlv@latest; \