diff --git a/frontend/azlinux/azlinux3.go b/frontend/azlinux/azlinux3.go index c09b074a8..ea5d3f9bd 100644 --- a/frontend/azlinux/azlinux3.go +++ b/frontend/azlinux/azlinux3.go @@ -61,7 +61,7 @@ func (w azlinux3) Install(pkgs []string, opts ...installOpt) llb.RunOption { } func (w azlinux3) BasePackages() []string { - return []string{"azurelinux-release"} + return []string{"distroless-packages-minimal"} } func (azlinux3) DefaultImageConfig(ctx context.Context, resolver llb.ImageMetaResolver, platform *ocispecs.Platform) (*dalec.DockerImageSpec, error) { diff --git a/frontend/azlinux/mariner2.go b/frontend/azlinux/mariner2.go index 078d10336..bae0b955a 100644 --- a/frontend/azlinux/mariner2.go +++ b/frontend/azlinux/mariner2.go @@ -58,7 +58,7 @@ func (w mariner2) Install(pkgs []string, opts ...installOpt) llb.RunOption { } func (w mariner2) BasePackages() []string { - return []string{"mariner-release"} + return []string{"distroless-packages-minimal"} } func (mariner2) DefaultImageConfig(ctx context.Context, resolver llb.ImageMetaResolver, platform *ocispecs.Platform) (*dalec.DockerImageSpec, error) {