2018-06-05 01:01:18 -04:00
|
|
|
COPY imagefiles/install-gosu-binary.sh /dockcross/
|
|
|
|
|
2018-06-04 23:53:38 -04:00
|
|
|
RUN \
|
|
|
|
set -x \
|
|
|
|
&& yum -y install \
|
|
|
|
epel-release \
|
|
|
|
gpg \
|
|
|
|
zlib-devel \
|
|
|
|
gettext \
|
2018-06-05 01:01:18 -04:00
|
|
|
&& 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
|
2016-11-03 21:33:24 -04:00
|
|
|
|
|
|
|
COPY manylinux-common/install-python-packages.sh /usr/local/bin
|
|
|
|
RUN /usr/local/bin/install-python-packages.sh
|
|
|
|
|
2016-11-04 22:58:31 -04:00
|
|
|
COPY manylinux-common/pre_exec.sh /dockcross/pre_exec.sh
|
|
|
|
|
2017-05-09 23:04:33 -04:00
|
|
|
RUN yum -y install pax zip openssh-clients \
|
2017-04-22 20:52:31 -04:00
|
|
|
&& yum clean all
|