mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-08 20:27:27 +01:00
9e57d2bd8f
Addresses: > [ 2/18] RUN set -x && yum -y install gpg python3-devel zlib-devel gettext openssh-clients wget nasm zip && yum clean all: 265 6.220 GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux 266 6.220 Public key for platform-python-devel-3.6.8-56.el8_9.3.alma.1.x86_64.rpm is not installed. Failing package is: platform-python-devel-3.6.8-56.el8_9.3.alma.1.x86_64 267 6.220 GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux 268 6.220 Public key for platform-python-3.6.8-56.el8_9.3.alma.1.x86_64.rpm is not installed. Failing package is: platform-python-3.6.8-56.el8_9.3.alma.1.x86_64 269 6.220 GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux 270 6.221 Public key for python3-libs-3.6.8-56.el8_9.3.alma.1.x86_64.rpm is not installed. Failing package is: python3-libs-3.6.8-56.el8_9.3.alma.1.x86_64 271 6.221 GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux 272 6.221 The downloaded packages were saved in cache until the next successful transaction. 273 6.221 You can remove cached packages by executing 'yum clean packages'. 274 6.230 Error: GPG check FAILED
31 lines
624 B
Plaintext
31 lines
624 B
Plaintext
RUN \
|
|
set -x && \
|
|
yum upgrade -y almalinux-release && \
|
|
yum -y install \
|
|
gpg \
|
|
python3-devel \
|
|
zlib-devel \
|
|
gettext \
|
|
openssh-clients \
|
|
wget \
|
|
nasm \
|
|
zip \
|
|
&& \
|
|
yum clean all
|
|
|
|
# Image build scripts
|
|
COPY \
|
|
manylinux-common/install-python-packages.sh \
|
|
/buildscripts/
|
|
|
|
RUN \
|
|
set -x && \
|
|
# Remove sudo provided by devtoolset since it doesn't work with
|
|
# our sudo wrapper calling gosu.
|
|
rm -f /opt/rh/gcc-toolset-12/root/usr/bin/sudo && \
|
|
/buildscripts/install-python-packages.sh && \
|
|
rm -rf /buildscripts
|
|
|
|
# Runtime scripts
|
|
COPY manylinux-common/pre_exec.sh /dockcross/
|