From 91f152c0a3693b2f65ac91729dab28b87b0e0810 Mon Sep 17 00:00:00 2001 From: amass <168062547@qq.com> Date: Mon, 19 Aug 2024 23:25:02 +0800 Subject: [PATCH] update boost version. --- ubuntu2204.dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ubuntu2204.dockerfile b/ubuntu2204.dockerfile index a0743ca..158364e 100644 --- a/ubuntu2204.dockerfile +++ b/ubuntu2204.dockerfile @@ -35,14 +35,14 @@ RUN git config --global user.email "168062547@qq.com" \ && git config --global user.name "amass" RUN cd /root \ - && wget https://frp-by1.wwvvww.cn:44048/s/boost_1_85_0/download -O boost_1_85_0.tar.gz \ - && tar xvf boost_1_85_0.tar.gz > /dev/null \ - && cd /root/boost_1_85_0 \ - && ./bootstrap.sh --prefix=/opt/Libraries/boost_1_85_0 \ - && ./b2 install -q --prefix=/opt/Libraries/boost_1_85_0 threading=multi link=shared runtime-link=shared variant=release cxxstd=17 cxxflags=-fPIC cflags=-fPIC \ - && rm -fr /root/boost_1_85_0* + && wget https://frp-by1.wwvvww.cn:44048/s/boost_1_86_0/download -O boost_1_86_0.tar.gz \ + && tar xvf boost_1_86_0.tar.gz > /dev/null \ + && cd /root/boost_1_86_0 \ + && ./bootstrap.sh --prefix=/opt/Libraries/boost_1_86_0 \ + && ./b2 install -q --prefix=/opt/Libraries/boost_1_86_0 threading=multi link=shared runtime-link=shared variant=release cxxstd=17 cxxflags=-fPIC cflags=-fPIC \ + && rm -fr /root/boost_1_86_0* -ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_85_0/lib:$LD_LIBRARY_PATH +ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_86_0/lib:$LD_LIBRARY_PATH CMD ["service", "ssh", "start", "-D"] ENV LANG C.UTF-8