Work around the fact that the sourceforge https certificate is not valid

This commit is contained in:
Abdelrahman Mahmoud 2018-02-23 12:19:02 -05:00
parent 6e1222f07b
commit c5398fd473
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ RUN cd $SRC_DIR/cmake-3.8.1/ && \
#### BOOST ####
WORKDIR $SRC_DIR
RUN wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz && \
RUN wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz --no-check-certificate && \
tar -xvf boost_1_63_0.tar.gz && \
rm boost_1_63_0.tar.gz && \
cd $SRC_DIR/boost_1_63_0 && \

View File

@ -48,7 +48,7 @@ RUN cd $SRC_DIR/cmake-3.8.1/ && \
#### BOOST ####
WORKDIR $SRC_DIR
RUN wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz && \
RUN wget https://sourceforge.net/projects/boost/files/boost/1.63.0/boost_1_63_0.tar.gz --no-check-certificate && \
tar -xvf boost_1_63_0.tar.gz && \
rm boost_1_63_0.tar.gz && \
cd $SRC_DIR/boost_1_63_0 && \