dockcross/common/common.manylinux_2_28

31 lines
624 B
Plaintext
Raw Normal View History

RUN \
set -x && \
yum upgrade -y almalinux-release && \
yum -y install \
gpg \
python3-devel \
zlib-devel \
gettext \
openssh-clients \
wget \
2022-11-24 09:55:58 -05:00
nasm \
zip \
&& \
yum clean all
2022-06-21 19:23:22 -04:00
# 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 && \
2022-06-21 19:23:22 -04:00
/buildscripts/install-python-packages.sh && \
rm -rf /buildscripts
# Runtime scripts
COPY manylinux-common/pre_exec.sh /dockcross/