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 <vfisarov@redhat.com>
Change-Id: I5d6c67e309709ff363575189ebc8c53541bbe7ff
This commit is contained in:
Veronika Fisarova 2023-03-27 09:38:00 +02:00
parent cc370a5dd1
commit 6bd2a45eac
1 changed files with 2 additions and 2 deletions

View File

@ -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. '