From 5606e7635c09a7b8b5e746a1b6abcaa2258dc2c9 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Wed, 10 Nov 2021 00:02:13 -0500 Subject: [PATCH] Install specific version of boost (1.37) --- povray_wasm/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/povray_wasm/Dockerfile b/povray_wasm/Dockerfile index 2c63a4b..8d888b1 100644 --- a/povray_wasm/Dockerfile +++ b/povray_wasm/Dockerfile @@ -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