Download curl from https endpoint (#116)

This commit is contained in:
Stuart Hinson 2018-03-08 09:03:00 -08:00 committed by Cory Benfield
parent ad8afee8aa
commit c583298096
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ RUN update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-5.0
#RUN apt-get install -y curl #RUN apt-get install -y curl
RUN apt-get install -y build-essential libssl-dev RUN apt-get install -y build-essential libssl-dev
RUN mkdir $HOME/.curl RUN mkdir $HOME/.curl
RUN wget -q http://curl.haxx.se/download/curl-7.50.3.tar.gz -O $HOME/curl.tar.gz RUN wget -q https://curl.haxx.se/download/curl-7.50.3.tar.gz -O $HOME/curl.tar.gz
RUN tar xzf $HOME/curl.tar.gz --directory $HOME/.curl --strip-components=1 RUN tar xzf $HOME/curl.tar.gz --directory $HOME/.curl --strip-components=1
RUN cd $HOME/.curl && ./configure --with-ssl && make && make install && cd - RUN cd $HOME/.curl && ./configure --with-ssl && make && make install && cd -
RUN ldconfig RUN ldconfig