Skip to content

Commit 18de439

Browse files
authored
Fix Boost download URL (#512)
Signed-off-by: Tom Plant <tom@tplant.com.au>
1 parent 71f1548 commit 18de439

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

instrumentation/otel-webserver-module/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ RUN git clone https://github.com/grpc/grpc \
108108
RUN mkdir -p dependencies
109109

110110
# install boost version
111-
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
111+
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
112112
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
113113
&& cd ${BOOST_FILENAME} \
114114
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \

instrumentation/otel-webserver-module/codeql-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ apt-get install apache2 -y && a2enmod proxy && a2enmod proxy_http \
157157
&& a2enmod proxy_balancer && a2enmod dav
158158

159159
#Build and install boost
160-
wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
160+
wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
161161
&& tar -xvf ${BOOST_FILENAME}.tar.gz \
162162
&& cd ${BOOST_FILENAME} \
163163
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \

instrumentation/otel-webserver-module/docker/almalinux8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN git clone https://github.com/grpc/grpc \
8989
RUN mkdir -p dependencies
9090

9191
# install boost version 1.75.0
92-
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
92+
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
9393
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
9494
&& cd ${BOOST_FILENAME} \
9595
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \

instrumentation/otel-webserver-module/docker/centos7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ RUN git clone https://github.com/grpc/grpc \
116116
RUN mkdir -p dependencies
117117

118118
# install boost version 1.75.0
119-
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
119+
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
120120
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
121121
&& cd ${BOOST_FILENAME} \
122122
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \

instrumentation/otel-webserver-module/docker/ubuntu20.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ RUN apt-get install apache2 -y && a2enmod proxy && a2enmod proxy_http \
159159
&& a2enmod proxy_balancer && a2enmod dav
160160

161161
#Build and install boost
162-
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
162+
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
163163
&& tar -xvf ${BOOST_FILENAME}.tar.gz \
164164
&& cd ${BOOST_FILENAME} \
165165
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \

0 commit comments

Comments
 (0)