mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-09 00:47:30 +00:00
As Fedora 38 has reached EOL, we are encountering 404 errors for s390x, such as: ``` Status code: 404 for https://dl.fedoraproject.org/pub/fedora-secondary/updates/38/Everything/s390x/repodata/repomd.xml ``` Let's bump the OS to the latest version. Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
20 lines
447 B
Docker
20 lines
447 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
ARG IMAGE_REGISTRY=registry.fedoraproject.org
|
|
FROM ${IMAGE_REGISTRY}/fedora:40
|
|
|
|
RUN ([ -n "$http_proxy" ] && \
|
|
sed -i '$ a proxy='$http_proxy /etc/dnf/dnf.conf ; true) && \
|
|
dnf install -y \
|
|
e2fsprogs \
|
|
findutils \
|
|
gcc \
|
|
gdisk \
|
|
parted \
|
|
qemu-img \
|
|
veritysetup \
|
|
xfsprogs && \
|
|
dnf clean all
|