mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-26 15:55:24 +00:00
The guest kernel build derived a CROSS_COMPILE=<arch>-linux-gnu- prefix whenever the target arch differed from the host, the static-build wrapper switched to a per-arch `-cross-build` image (with buildx/--platform for s390x), and the builder image installed gcc-<arch>-linux-gnu / binutils-<arch>-linux-gnu cross toolchains. None of this is exercised on our side: the kernel is always built on a native-arch runner. Remove the CROSS_COMPILE plumbing, the cross-build image/buildx handling and the cross toolchain install. Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com> Assisted-by: Cursor <cursoragent@cursor.com>
36 lines
669 B
Docker
36 lines
669 B
Docker
# Copyright (c) 2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM ubuntu:22.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV INSTALL_IN_GOPATH=false
|
|
|
|
COPY install_yq.sh /usr/bin/install_yq.sh
|
|
|
|
# kernel deps
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
bc \
|
|
bison \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
debhelper \
|
|
dwarves \
|
|
flex \
|
|
git \
|
|
iptables \
|
|
kmod \
|
|
libdw-dev \
|
|
libelf-dev \
|
|
libssl-dev \
|
|
gettext \
|
|
rsync \
|
|
cpio \
|
|
patch \
|
|
python3 && \
|
|
apt-get clean && apt-get autoclean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN install_yq.sh
|