This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/curl/curl/blob/master/docs/HTTP3.md#quiche-version | |
| FROM ubuntu | |
| RUN apt-get update && apt install build-essential git cmake golang cargo autoconf libtool automake | |
| RUN cd /usr/local/src && git clone --recursive https://github.com/cloudflare/quiche && \ | |
| cd quiche/deps/boringssl && mkdir build && cd build && \ | |
| cmake -DCMAKE_POSITION_INDEPENDENT_CODE=on .. && make | |
| RUN cd .. && mkdir -p .openssl/lib && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # source: https://trac.ffmpeg.org/wiki/CentosCompilationGuide | |
| FFBUILDROOT='/usr/local/src/ffmpeg_build' | |
| FFSOURCEROOT='/usr/local/src/ffmpeg_sources' | |
| BINDIR='/usr/local/bin' | |
| yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel | |
| mkdir "$FFSOURCEROOT" |