Near Zero CVE Go Runtime base image.
1.5K
This is a minimal, hardened, multi-architecture Go runtime built on Wolfi.
Unlike ns-wolfi-go (which contains the full Go toolchain for building),
this image is designed for production runtime only — no compiler, no toolchain.
wolfi-base and CA certificateslinux/amd64 and linux/arm64Use in a multi-stage Dockerfile — compile with the toolchain image, run with this:
# Build stage
FROM kenzman/ns-wolfi-go:latest AS builder
WORKDIR /app
COPY . .
RUN go build -o myapp .
# Runtime stage
FROM kenzman/ns-wolfi-go-runtime:latest
COPY --from=builder /app/myapp /myapp
ENTRYPOINT ["/myapp"]
cosign verify \
--certificate-identity-regexp "https://github.com/Ekene95/secops-base-images/.*" \
--certificate-oidc-issuer "https://token.actions.githubusercontent.com" \
kenzman/ns-wolfi-go-runtime:latest
| Image | Purpose |
|---|---|
kenzman/ns-wolfi-go | Full Go toolchain for build stages |
kenzman/ns-wolfi-go-runtime | Minimal runtime for production |
Content type
Image
Digest
sha256:fc22200ce…
Size
6.9 MB
Last updated
27 days ago
docker pull kenzman/ns-wolfi-go-runtime:1.25