mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-15 22:08:47 +00:00
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>
18 lines
309 B
Docker
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@
|