Hi,
(I'll assume that you want to build the exact same Distroless images already published at
gcr.io/distroless/..., not that you want to build your own images that are using Distroless as a base image.)
Distroless images are being built in a declarative manner, and there is no Docker runtime involved or being used at image-building time. For example, if you are using `Dockerfile`, then it means you actually execute things on a Docker runtime while building an image. That is, it's like running a script in an imperative manner. Instead, Distroless images are directly assembled, much like just bundling existing files to create tar archives. So, yeah, it's not that you can use BuildAh or Docker to build Distroless images.