This repository builds and publishes a base Docker image containing the Delve debugger. This image is intended to be used as a base for debugging Go applications in containers.
- Alpine-based Go image
dlv(Delve debugger) installed in/go/bin/dlv- CA certificates and mime types
You can use this image in your Dockerfiles:
FROM ghcr.io/jaegertracing/base-image-with-debugger:latest
# ... your build steps ...The container image is only pushed on published GitHub Releases.
The versions of the base image and Delve are managed by Renovate.
https://developer.mend.io/github/jaegertracing/base-image-with-debugger
You can build the image locally using the provided Makefile:
# Build for current architecture
make build
# Build for all supported architectures (requires Docker Buildx)
make build-all