From 08d2f6bfe48e5c2bee338dbcb24bff9a334eb029 Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Mon, 15 Jul 2024 09:58:54 +0200 Subject: [PATCH] osbuilder: Bump Fedora to 40 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 --- tools/osbuilder/image-builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osbuilder/image-builder/Dockerfile b/tools/osbuilder/image-builder/Dockerfile index fcfa5ac208..ab0a7d0063 100644 --- a/tools/osbuilder/image-builder/Dockerfile +++ b/tools/osbuilder/image-builder/Dockerfile @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 ARG IMAGE_REGISTRY=registry.fedoraproject.org -FROM ${IMAGE_REGISTRY}/fedora:38 +FROM ${IMAGE_REGISTRY}/fedora:40 RUN ([ -n "$http_proxy" ] && \ sed -i '$ a proxy='$http_proxy /etc/dnf/dnf.conf ; true) && \