From 6bd2a45eac7d14d1599c5cea6ca954e9a3e11502 Mon Sep 17 00:00:00 2001 From: Veronika Fisarova Date: Mon, 27 Mar 2023 09:38:00 +0200 Subject: [PATCH] Update container validation to use Fedora image version 36 Fedora 35 image was move to the archives, hence is no more available on the container URL. The podman jobs are failing due to the 404 error. Container image version needs to be updated to use the Fedora 36. Closes-Bug: #2012903 Signed-off-by: Veronika Fisarova Change-Id: I5d6c67e309709ff363575189ebc8c53541bbe7ff --- container/validation | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/validation b/container/validation index 1b838046..8f6a9d2d 100755 --- a/container/validation +++ b/container/validation @@ -100,8 +100,8 @@ class Validation(argparse.ArgumentParser): help=('User UID in container. ')) parser.add_argument('--gid', '-G', type=int, default=user_entry.pw_gid, help=('Group UID in container. ')) - parser.add_argument('--image', type=str, default='fedora:35', - help='Container base image. Defaults to fedora:35') + parser.add_argument('--image', type=str, default='fedora:36', + help='Container base image. Defaults to fedora:36') parser.add_argument('--extra-pkgs', type=str, default='', help=('Extra packages to install in the container.' 'Comma or space separated list. '