2016-11-04 02:33:24 +01:00
|
|
|
RUN cd /opt && \
|
2016-11-27 01:59:07 +01:00
|
|
|
wget --progress=bar:force "http://smarden.org/runit/runit-2.1.2.tar.gz" && \
|
2016-11-04 02:33:24 +01:00
|
|
|
tar xvzf runit-2.1.2.tar.gz && \
|
|
|
|
cd admin/runit-2.1.2 && \
|
|
|
|
./package/install
|
|
|
|
|
|
|
|
COPY manylinux-common/install-python-packages.sh /usr/local/bin
|
|
|
|
RUN /usr/local/bin/install-python-packages.sh
|
|
|
|
|
2016-11-05 03:58:31 +01:00
|
|
|
COPY manylinux-common/pre_exec.sh /dockcross/pre_exec.sh
|
|
|
|
|
2017-01-30 16:15:03 +01:00
|
|
|
RUN yum -y install pax zip sudo && \
|
2016-11-04 02:37:50 +01:00
|
|
|
sed -i 's/Defaults requiretty/#Defaults requiretty/' /etc/sudoers && \
|
|
|
|
visudo -c
|
2016-11-03 19:12:12 +01:00
|
|
|
|