mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-19 01:39:48 +00:00
to cover a Red Hat (adjacent) rootfs with great cross-platform compatibility and a workable release cadence. The previous CentOS & Fedora workflows are simplified. Also remove unnecessary `/usr/share` files as on Ubuntu and mark Alpine as unuspported on ppc64le (due to musl, for a while already). Fixes: #3340 Signed-off-by: Jakob Naucke <jakob.naucke@ibm.com>
19 lines
365 B
Docker
19 lines
365 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
|
|
|
|
@INSTALL_RUST@
|