mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 11:58:41 +00:00
The osbuilder scripts include a bunch of code for installing cmake, even though cmake is never invoked. versions.yaml claims it's needed to build grpc-rs, but that doesn't appear to be in our dependency graph. Presumably, we used to need this, but don't any more. So, remove all cmake references. Fixes #1309 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38 lines
668 B
Docker
38 lines
668 B
Docker
#
|
|
# Copyright (c) 2019 SUSE LLC
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from opensuse/tumbleweed
|
|
|
|
RUN zypper --non-interactive refresh; \
|
|
zypper --non-interactive install --no-recommends --force-resolution \
|
|
autoconf \
|
|
automake \
|
|
binutils \
|
|
coreutils \
|
|
cpio \
|
|
curl \
|
|
dracut \
|
|
gcc \
|
|
gcc-c++ \
|
|
git-core \
|
|
glibc-devel \
|
|
glibc-devel-static \
|
|
glibc-utils \
|
|
libstdc++-devel \
|
|
linux-glibc-devel \
|
|
m4 \
|
|
make \
|
|
sed \
|
|
tar \
|
|
vim \
|
|
which; \
|
|
zypper --non-interactive clean --all;
|
|
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_MUSL@
|
|
@INSTALL_GO@
|
|
@INSTALL_RUST@
|