From 2502305326e124d643670f15d8b50b48a096f2d6 Mon Sep 17 00:00:00 2001 From: luocai Date: Thu, 12 Dec 2024 18:56:47 +0800 Subject: [PATCH] update boost version. --- Dockerfiles/ubuntu2204.dockerfile | 16 ++++++++-------- Dockerfiles/ubuntu2404.dockerfile | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Dockerfiles/ubuntu2204.dockerfile b/Dockerfiles/ubuntu2204.dockerfile index 7fe7f66..0abd078 100644 --- a/Dockerfiles/ubuntu2204.dockerfile +++ b/Dockerfiles/ubuntu2204.dockerfile @@ -76,14 +76,14 @@ ENV PATH=/opt/Qt/6.8.0/gcc_64/bin:$PATH ENV LD_LIBRARY_PATH=/opt/Qt/6.8.0/gcc_64/lib:$LD_LIBRARY_PATH RUN cd /root \ - && 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* \ - && echo 'export LD_LIBRARY_PATH=/opt/Libraries/boost_1_86_0/lib:LD_LIBRARY_PATH' >> /etc/profile -ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_86_0/lib:LD_LIBRARY_PATH + && wget https://boostorg.jfrog.io/artifactory/main/release/1.87.0/source/boost_1_87_0.tar.gz \ + && tar xvf boost_1_87_0.tar.gz > /dev/null \ + && cd /root/boost_1_87_0 \ + && ./bootstrap.sh --prefix=/opt/Libraries/boost_1_87_0 \ + && ./b2 install -q --prefix=/opt/Libraries/boost_1_87_0 threading=multi link=shared runtime-link=shared variant=release cxxstd=17 cxxflags=-fPIC cflags=-fPIC \ + && rm -fr /root/boost_1_87_0* \ + && echo 'export LD_LIBRARY_PATH=/opt/Libraries/boost_1_87_0/lib:LD_LIBRARY_PATH' >> /etc/profile +ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_87_0/lib:LD_LIBRARY_PATH RUN cd /root \ && wget https://github.com/Mbed-TLS/mbedtls/releases/download/mbedtls-3.6.2/mbedtls-3.6.2.tar.bz2 \ diff --git a/Dockerfiles/ubuntu2404.dockerfile b/Dockerfiles/ubuntu2404.dockerfile index 1a2e525..ca3d142 100644 --- a/Dockerfiles/ubuntu2404.dockerfile +++ b/Dockerfiles/ubuntu2404.dockerfile @@ -75,14 +75,14 @@ ENV PATH=/opt/Qt/6.8.0/gcc_64/bin:$PATH ENV LD_LIBRARY_PATH=/opt/Qt/6.8.0/gcc_64/lib:$LD_LIBRARY_PATH RUN cd /root \ - && 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* \ - && echo 'export LD_LIBRARY_PATH=/opt/Libraries/boost_1_86_0/lib:LD_LIBRARY_PATH' >> /etc/profile -ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_86_0/lib:LD_LIBRARY_PATH + && wget https://boostorg.jfrog.io/artifactory/main/release/1.87.0/source/boost_1_87_0.tar.gz \ + && tar xvf boost_1_87_0.tar.gz > /dev/null \ + && cd /root/boost_1_87_0 \ + && ./bootstrap.sh --prefix=/opt/Libraries/boost_1_87_0 \ + && ./b2 install -q --prefix=/opt/Libraries/boost_1_87_0 threading=multi link=shared runtime-link=shared variant=release cxxstd=17 cxxflags=-fPIC cflags=-fPIC \ + && rm -fr /root/boost_1_87_0* \ + && echo 'export LD_LIBRARY_PATH=/opt/Libraries/boost_1_87_0/lib:LD_LIBRARY_PATH' >> /etc/profile +ENV LD_LIBRARY_PATH=/opt/Libraries/boost_1_87_0/lib:LD_LIBRARY_PATH RUN cd /root \ && wget https://github.com/Mbed-TLS/mbedtls/releases/download/mbedtls-3.6.2/mbedtls-3.6.2.tar.bz2 \