mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-26 02:24:21 +01:00
- Install OpenSSL for key generation in kernel build - Do not install libpmem - Do not exclude `*/share/*/*.img` files in QEMU tarball since among them are boot loader files critical for IPLing. Fixes: #2895 Signed-off-by: Jakob Naucke <jakob.naucke@ibm.com>
21 lines
365 B
Docker
21 lines
365 B
Docker
# Copyright (c) 2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM ubuntu
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# kernel deps
|
|
RUN apt update
|
|
RUN apt install -y \
|
|
bc \
|
|
bison \
|
|
build-essential \
|
|
curl \
|
|
flex \
|
|
git \
|
|
iptables \
|
|
libelf-dev
|
|
|
|
RUN [ "$(uname -m)" = "s390x" ] && apt-get install -y libssl-dev || true
|