manylinux-x64: Install skbuild

This commit is contained in:
Matt McCormick 2016-09-20 11:41:30 -04:00
parent 5d90a72dfc
commit 60374aa006
2 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,9 @@ RUN cd /opt && \\
cd admin/runit-2.1.2 && \\
./package/install
COPY manylinux-x64/install-skbuild.sh /usr/local/bin
RUN /usr/local/bin/install-skbuild.sh
ENV CROSS_TRIPLE x86_64-linux-gnu
ENV CROSS_ROOT /opt/rh/devtoolset-2/root/usr/bin
ENV AS=${CROSS_ROOT}/as \\

View File

@ -0,0 +1,5 @@
#!/bin/bash
for PIP in /opt/python/*/bin/pip; do
$PIP install scikit-build==0.3.0
done