Skip to content

Commit

Permalink
Fix Boost download URL
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Plant <tom@tplant.com.au>
  • Loading branch information
pl4nty committed Jan 17, 2025
1 parent a4d3681 commit 28143bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion instrumentation/otel-webserver-module/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ RUN git clone https://github.com/grpc/grpc \
RUN mkdir -p dependencies

# install boost version
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
&& cd ${BOOST_FILENAME} \
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/otel-webserver-module/codeql-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ apt-get install apache2 -y && a2enmod proxy && a2enmod proxy_http \
&& a2enmod proxy_balancer && a2enmod dav

#Build and install boost
wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}.tar.gz \
&& tar -xvf ${BOOST_FILENAME}.tar.gz \
&& cd ${BOOST_FILENAME} \
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ RUN git clone https://github.com/grpc/grpc \
RUN mkdir -p dependencies

# install boost version 1.75.0
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
&& cd ${BOOST_FILENAME} \
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ RUN git clone https://github.com/grpc/grpc \
RUN mkdir -p dependencies

# install boost version 1.75.0
RUN wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
RUN wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_FILENAME}_rc1.tar.gz \
&& tar -xvf ${BOOST_FILENAME}_rc1.tar.gz \
&& cd ${BOOST_FILENAME} \
&& ./bootstrap.sh --with-libraries=filesystem,system --prefix=/dependencies/boost/${BOOST_VERSION}/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ RUN apt-get install apache2 -y && a2enmod proxy && a2enmod proxy_http \
&& a2enmod proxy_balancer && a2enmod dav

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

0 comments on commit 28143bb

Please sign in to comment.