We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218bf89 commit d0b88b6Copy full SHA for d0b88b6
.ci/Dockerfile.static
@@ -27,5 +27,8 @@ RUN TARBALL=boost_${BOOST_VERSION}.tar.bz2 && \
27
curl -L https://archives.boost.io/release/1.68.0/source/${TARBALL} \
28
-o /tmp/${TARBALL} --fail && \
29
tar xf /tmp/${TARBALL} --one-top-level=/tmp && \
30
- mv /tmp/boost_${BOOST_VERSION}/boost /usr/local/include/boost && \
+ cd /tmp/boost_${BOOST_VERSION} && \
31
+ ./bootstrap.sh --prefix=/usr/local && \
32
+ ./b2 include=/usr/include/python3.8 link=static install && \
33
+ cd / && \
34
rm -rf /tmp/${TARBALL} /tmp/boost_${BOOST_VERSION}
0 commit comments