mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-28 03:24:24 +01:00
Remove the libseccomp package from Dockerfile of `alpine` and `clearlinux` because the libseccomp library is installed by the `ci/install_libseccomp.sh` script when building the kata-agent. Fixes: #3508 Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com>
42 lines
674 B
Docker
42 lines
674 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=docker.io
|
|
FROM ${IMAGE_REGISTRY}/fedora:30
|
|
|
|
@SET_PROXY@
|
|
|
|
RUN dnf -y update && dnf install -y \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
chrony \
|
|
coreutils \
|
|
curl \
|
|
curl \
|
|
gcc \
|
|
gcc-c++ \
|
|
git \
|
|
glibc-common \
|
|
glibc-devel \
|
|
glibc-headers \
|
|
glibc-static \
|
|
glibc-utils \
|
|
libstdc++-devel \
|
|
libstdc++-static \
|
|
m4 \
|
|
make \
|
|
pkgconfig \
|
|
sed \
|
|
systemd \
|
|
tar \
|
|
vim \
|
|
which && \
|
|
dnf clean all
|
|
|
|
# This will install the proper packages to build Kata components
|
|
@INSTALL_MUSL@
|
|
@INSTALL_RUST@
|