Files
kata-containers/tools/osbuilder/rootfs-builder/cbl-mariner/Dockerfile.in
Fabiano Fidêncio ad240a39e6 kata-deploy: tools: tests: Use zstd instead of xz
Although the compress ratio is not as optimal as using xz, it's way
faster to compress / uncompress, and it's "good enough".

This change is not small, but it's still self-contained, and has to get
in at once, in order to help bisects in the future.

Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
2025-08-21 19:53:55 +02:00

18 lines
309 B
Docker

# Copyright (c) 2023 Microsoft Corporation
#
# SPDX-License-Identifier: Apache-2.0
ARG IMAGE_REGISTRY=mcr.microsoft.com
FROM ${IMAGE_REGISTRY}/azurelinux/base/core:@OS_VERSION@
RUN tdnf -y install \
ca-certificates \
build-essential \
dnf \
git \
tar \
xz \
zstd
@INSTALL_RUST@