mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-12 10:16:48 +00:00
As Ubuntu 20.04 will reach its EOL in April. Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
23 lines
462 B
Docker
23 lines
462 B
Docker
# Copyright (c) 2022 IBM
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM ubuntu:22.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
iasl \
|
|
make \
|
|
nasm \
|
|
python-is-python3 \
|
|
python3 \
|
|
python3-distutils \
|
|
uuid-dev && \
|
|
apt-get clean && rm -rf /var/lib/lists/
|