mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-29 00:37:24 +00:00
As we'll be untarring the agent tarball (and any other component that may be part of the rootfs) into the rootfs, we have to have xz installed. For debian and ubuntu the package is called xz-utils; for centos, alpine and cbl-mariner the package is called xz. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
20 lines
374 B
Docker
20 lines
374 B
Docker
# Copyright (c) 2018 Intel Corporation, 2021 IBM Corp.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM quay.io/centos/centos:@OS_VERSION@
|
|
@SET_PROXY@
|
|
|
|
RUN dnf -y update && \
|
|
dnf -y install dnf-plugins-core && \
|
|
dnf config-manager --set-enabled crb && \
|
|
dnf -y install \
|
|
diffutils \
|
|
file \
|
|
g++ \
|
|
git \
|
|
protobuf-compiler \
|
|
xz
|
|
|
|
@INSTALL_RUST@
|