Files
.github
android-arm
android-arm64
android-x86
android-x86_64
bare-armv7emhf-nano_newlib
common
common-manylinux.crosstool
common.buildroot
common.crosstool
common.debian
common.dockcross
common.docker
common.label-and-env
common.manylinux2014
common.manylinux_2_28
common.webassembly
common.windows
imagefiles
linux-arm64
linux-arm64-full
linux-arm64-lts
linux-arm64-musl
linux-armv5
linux-armv5-musl
linux-armv5-uclibc
linux-armv6
linux-armv6-lts
linux-armv6-musl
linux-armv7
linux-armv7-lts
linux-armv7a
linux-armv7a-lts
linux-armv7l-musl
linux-i686
linux-m68k-uclibc
linux-mips
linux-mips-lts
linux-mips-uclibc
linux-mipsel-lts
linux-ppc
linux-ppc64le
linux-ppc64le-lts
linux-riscv32
linux-riscv64
linux-s390x
linux-x64
linux-x64-clang
linux-x64-tinycc
linux-x86
linux-x86_64-full
linux-xtensa-uclibc
manylinux-common
manylinux2014-aarch64
manylinux2014-x64
manylinux2014-x86
manylinux_2_28-x64
test
tools
web-wasi
web-wasi-emulated-threads
web-wasi-threads
web-wasm
windows-arm64
windows-armv7
windows-shared-x64
windows-shared-x64-posix
windows-shared-x86
windows-static-x64
windows-static-x64-posix
windows-static-x86
.gitattributes
.gitignore
CONTRIBUTING.md
Dockerfile.in
LICENSE
Makefile
README.md
dockcross/common/common.manylinux_2_28
Matt McCormick 9e57d2bd8f manylinux_2_28: update almalinux-release package
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
2024-03-04 12:22:45 +01:00

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/