mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
27 lines
636 B
Plaintext
27 lines
636 B
Plaintext
COPY \
|
|
imagefiles/install-gosu-binary.sh \
|
|
manylinux-common/install-python-packages.sh \
|
|
manylinux-common/pre_exec.sh \
|
|
/dockcross/
|
|
|
|
RUN \
|
|
set -x && \
|
|
yum -y install \
|
|
epel-release \
|
|
gpg \
|
|
zlib-devel \
|
|
gettext \
|
|
openssh-clients \
|
|
pax \
|
|
zip \
|
|
&& \
|
|
yum clean all && \
|
|
/dockcross/install-gosu-binary.sh && \
|
|
rm /dockcross/install-gosu-binary.sh && \
|
|
# Remove sudo provided by "devtoolset-2" since it doesn't work with
|
|
# our sudo wrapper calling gosu.
|
|
rm /opt/rh/devtoolset-2/root/usr/bin/sudo && \
|
|
/dockcross/install-python-packages.sh && \
|
|
rm /dockcross/install-python-packages.sh
|
|
|