GPG keys failing for lsphp81 packages

#1
Code:
FROM almalinux:8.4

RUN dnf makecache
RUN dnf install -y git
RUN rpm -Uvh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el8.noarch.rpm
RUN dnf update -y

RUN dnf -y module reset nodejs \
    && dnf -y module enable nodejs:18 \
    && dnf -y install nodejs

# Enable the EPEL repository
RUN dnf install -y epel-release

# Install necessary dependencies
#RUN dnf install -y libargon2 lsphp74-imap
RUN dnf install --nogpgcheck -y libargon2 lsphp81 lsphp81-imap

# Install OpenLiteSpeed
RUN dnf install -y openlitespeed

...
Code:
 > [dev_container_auto_added_stage_label  9/18] RUN dnf install -y libargon2 lsphp81 lsphp81-imap:
#0 5.344 Extra Packages for Enterprise Linux 8 - x86_64  4.1 MB/s |  16 MB     00:03  
#0 64.74 Last metadata expiration check: 0:01:01 ago on Tue Jan  9 22:51:44 2024.
#0 70.16 Dependencies resolved.
#0 70.19 ======================================================================================
#0 70.19  Package          Arch    Version                              Repository         Size
#0 70.19 ======================================================================================
#0 70.19 Installing:
#0 70.19  libargon2        x86_64  20171227-3.el8                       epel               29 k
#0 70.19  lsphp81          x86_64  8.1.27-2.el8                         litespeed-update  5.4 M
#0 70.19  lsphp81-imap     x86_64  8.1.27-2.el8                         litespeed-update   42 k
#0 70.19 Installing dependencies:
#0 70.19  libc-client      x86_64  2007f-24.el8                         epel              564 k
#0 70.19  libzip           x86_64  1.5.1-2.module_el8.3.0+2010+7c76a223 appstream          61 k
#0 70.19  lsphp81-common   x86_64  8.1.27-2.el8                         litespeed-update  666 k
#0 70.19 Enabling module streams:
#0 70.19  httpd                    2.4                                                        
#0 70.19  nginx                    1.14                                                      
#0 70.19  php                      7.2                                                        
#0 70.19
#0 70.19 Transaction Summary
#0 70.19 ======================================================================================
#0 70.19 Install  6 Packages
#0 70.19
#0 70.21 Total download size: 6.8 M
#0 70.22 Installed size: 28 M
#0 70.23 Downloading Packages:
#0 71.79 (1/6): libzip-1.5.1-2.module_el8.3.0+2010+7c76a 188 kB/s |  61 kB     00:00  
#0 72.05 (2/6): libargon2-20171227-3.el8.x86_64.rpm       50 kB/s |  29 kB     00:00  
#0 73.18 (3/6): libc-client-2007f-24.el8.x86_64.rpm      340 kB/s | 564 kB     00:01  
#0 73.32 (4/6): lsphp81-common-8.1.27-2.el8.x86_64.rpm   529 kB/s | 666 kB     00:01  
#0 73.44 (5/6): lsphp81-8.1.27-2.el8.x86_64.rpm          3.3 MB/s | 5.4 MB     00:01  
#0 73.44 (6/6): lsphp81-imap-8.1.27-2.el8.x86_64.rpm     186 kB/s |  42 kB     00:00  
#0 73.46 --------------------------------------------------------------------------------
#0 73.46 Total                                           2.1 MB/s | 6.8 MB  
[2024-01-09T22:52:57.367Z]   00:03    
#0 73.72 Extra Packages for Enterprise Linux 8 - x86_64  1.6 MB/s | 1.6 kB     00:00  
#0 74.29 Importing GPG key 0x2F86D6A1:
#0 74.29  Userid     : "Fedora EPEL (8) <epel@fedoraproject.org>"
#0 74.29  Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1
#0 74.29  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
#0 74.58 Key imported successfully
#0 75.60 The downloaded packages were saved in cache until the next successful transaction.
#0 75.60 Package lsphp81-8.1.27-2.el8.x86_64.rpm is not signed
#0 75.60 Package lsphp81-common-8.1.27-2.el8.x86_64.rpm is not signed
#0 75.60 Package lsphp81-imap-8.1.27-2.el8.x86_64.rpm is not signed
#0 75.60 You can remove cached packages by executing 'dnf clean packages'.
#0 75.65 Error: GPG check FAILED
The command 'dnf install -y libargon lsphp81 lsphp81-imap' fails when I take --nogpgcheck out. This command used to work with the gpg check in place. I haven't really changed anything so was the gpg file invalidated and we need a new one uploaded?
 
Top