mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-05-17 04:52:23 +00:00
Fedora 42 reaches end-of-life in May 2026. Move the image-builder container to Fedora 44, which is the current stable release. Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
21 lines
469 B
Docker
21 lines
469 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
ARG IMAGE_REGISTRY=registry.fedoraproject.org
|
|
FROM ${IMAGE_REGISTRY}/fedora:44
|
|
|
|
RUN ([ -n "$http_proxy" ] && \
|
|
sed -i '$ a proxy='$http_proxy /etc/dnf/dnf.conf ; true) && \
|
|
dnf install -y \
|
|
e2fsprogs \
|
|
erofs-utils \
|
|
findutils \
|
|
gcc \
|
|
gdisk \
|
|
parted \
|
|
qemu-img \
|
|
veritysetup \
|
|
xfsprogs && \
|
|
dnf clean all
|