2016-11-03 21:33:24 -04:00
|
|
|
RUN cd /opt && \
|
2016-11-26 19:59:07 -05:00
|
|
|
wget --progress=bar:force "http://smarden.org/runit/runit-2.1.2.tar.gz" && \
|
2016-11-03 21:33:24 -04: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-04 22:58:31 -04: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-03 21:37:50 -04:00
|
|
|
sed -i 's/Defaults requiretty/#Defaults requiretty/' /etc/sudoers && \
|
|
|
|
visudo -c
|
2016-11-03 14:12:12 -04:00
|
|
|
|