From 3166399f80fd71b534bdeb6b5eb4cd01843ace1f Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Sun, 29 Mar 2020 07:22:54 -0700 Subject: [PATCH] Use sourceforge url for boost download in proxygen --- projects/proxygen/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/proxygen/Dockerfile b/projects/proxygen/Dockerfile index 14c3da592..d1f7155ba 100644 --- a/projects/proxygen/Dockerfile +++ b/projects/proxygen/Dockerfile @@ -46,7 +46,7 @@ RUN wget https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2 rm -rf cmake-3.15.2 # Install and build boost from source so we can have it use libc++ -RUN wget https://dl.bintray.com/boostorg/release/1.70.0/source/boost_1_70_0.tar.gz && \ +RUN wget https://sourceforge.net/projects/boost/files/boost/1.70.0/boost_1_70_0.tar.gz && \ tar xzf boost_1_70_0.tar.gz && \ cd boost_1_70_0 && \ ./bootstrap.sh --with-toolset=clang && \ @@ -156,4 +156,4 @@ RUN apt-get install patchelf # Fetch source and copy over files RUN git clone --depth 1 https://github.com/facebook/proxygen.git proxygen WORKDIR proxygen -COPY build.sh $SRC/ \ No newline at end of file +COPY build.sh $SRC/