mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-26 17:54:24 +01:00
For building rootfs with docker, glibc based rust target should be installed on ppc64le. Additionally, protobuf-compiler would be required on ppc64le as it is not present by default. Fixes: #1417 Signed-off-by: Amulya Meka <amulmek1@in.ibm.com>
44 lines
726 B
Docker
44 lines
726 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From registry.fedoraproject.org/fedora:@OS_VERSION@
|
|
|
|
@SET_PROXY@
|
|
|
|
RUN dnf -y update && dnf install -y \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
chrony \
|
|
coreutils \
|
|
curl \
|
|
gcc \
|
|
gcc-c++ \
|
|
git \
|
|
glibc-common \
|
|
glibc-devel \
|
|
glibc-headers \
|
|
glibc-static \
|
|
glibc-utils \
|
|
libseccomp \
|
|
libseccomp-devel \
|
|
libstdc++-devel \
|
|
libstdc++-static \
|
|
protobuf-compiler \
|
|
m4 \
|
|
make \
|
|
pkgconfig \
|
|
redhat-release \
|
|
sed \
|
|
systemd \
|
|
tar \
|
|
vim \
|
|
which
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_MUSL@
|
|
@INSTALL_GO@
|
|
@INSTALL_RUST@
|