Install specific version of boost (1.37)

This commit is contained in:
mmcwilliams 2021-11-10 00:02:13 -05:00
parent 0799c38e11
commit 5606e7635c
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y bash \
automake \
make
RUN cd /opt && git clone --recursive https://github.com/boostorg/boost.git
RUN cd /opt && git clone https://github.com/boostorg/boost.git boost
RUN cd /opt/boost && git checkout tags/boost-1.37.0
RUN cd /opt/boost && git submodule update --init --recursive
RUN mkdir -p /opt/libboost_build
RUN mkdir -p /opt/libboost