diff --git a/pulsar-client-cpp/docker/alpine/Dockerfile b/pulsar-client-cpp/docker/alpine/Dockerfile index 8e736c7738723d..ef77284242cc7e 100644 --- a/pulsar-client-cpp/docker/alpine/Dockerfile +++ b/pulsar-client-cpp/docker/alpine/Dockerfile @@ -35,7 +35,7 @@ RUN apk update \ #################################### # Download and compile boost -RUN curl -O -L https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.gz && \ +RUN curl -O -L https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz && \ tar xfz boost_1_72_0.tar.gz && \ cd /boost_1_72_0 && \ ./bootstrap.sh --with-libraries=program_options,regex,system,python --with-python=/usr/bin/python3 && \ diff --git a/pulsar-client-cpp/docker/alpine/Dockerfile-alpine-3.8 b/pulsar-client-cpp/docker/alpine/Dockerfile-alpine-3.8 index 5391ddef619342..0a9fbb40711b9a 100644 --- a/pulsar-client-cpp/docker/alpine/Dockerfile-alpine-3.8 +++ b/pulsar-client-cpp/docker/alpine/Dockerfile-alpine-3.8 @@ -35,7 +35,7 @@ RUN apk update \ #################################### # Download and compile boost -RUN curl -O -L https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.gz && \ +RUN curl -O -L https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz && \ tar xfz boost_1_72_0.tar.gz && \ cd /boost_1_72_0 && \ ./bootstrap.sh --with-libraries=program_options,regex,system,python --with-python=/usr/bin/python3 && \ diff --git a/pulsar-client-cpp/pkg/deb/Dockerfile b/pulsar-client-cpp/pkg/deb/Dockerfile index 809c705e6407f8..77c3f470c068fe 100644 --- a/pulsar-client-cpp/pkg/deb/Dockerfile +++ b/pulsar-client-cpp/pkg/deb/Dockerfile @@ -26,7 +26,7 @@ RUN apt-get update -y && \ libxml2-utils git # Download and compile boost -RUN curl -O -L https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz && \ +RUN curl -O -L https://boostorg.jfrog.io/artifactory/main/release/1.64.0/source/boost_1_64_0.tar.gz && \ tar xvfz boost_1_64_0.tar.gz && \ cd /boost_1_64_0 && \ ./bootstrap.sh --with-libraries=program_options,filesystem,regex,thread,system,python && \ diff --git a/pulsar-client-cpp/pkg/rpm/Dockerfile b/pulsar-client-cpp/pkg/rpm/Dockerfile index 5ab947955bf927..c2406c5c7d32a6 100644 --- a/pulsar-client-cpp/pkg/rpm/Dockerfile +++ b/pulsar-client-cpp/pkg/rpm/Dockerfile @@ -26,7 +26,7 @@ RUN yum update -y && \ python-devel createrepo libstdc++-static.x86_64 # Download and compile boost -RUN curl -O -L https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz && \ +RUN curl -O -L https://boostorg.jfrog.io/artifactory/main/release/1.64.0/source/boost_1_64_0.tar.gz && \ tar xvfz boost_1_64_0.tar.gz && \ cd /boost_1_64_0 && \ ./bootstrap.sh --with-libraries=program_options,filesystem,regex,thread,system,python && \