######################################################## FROM ossrs/srs:dev-cache AS centos7-baseline COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off && make FROM ossrs/srs:dev-cache AS centos7-no-webrtc COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off --rtc=off && make FROM ossrs/srs:dev-cache AS centos7-no-asm COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off --nasm=off --srtp-nasm=off && make FROM ossrs/srs:dev-cache AS centos7-all COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=on --gb28181=on --apm=on --h265=on && make FROM ossrs/srs:dev-cache AS centos7-ansi-no-ffmpeg COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off --cxx11=off --cxx14=off --ffmpeg-fit=off && make ######################################################## FROM ossrs/srs:ubuntu16-cache AS ubuntu16-baseline COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off && make FROM ossrs/srs:ubuntu16-cache AS ubuntu16-all COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=on --gb28181=on && make ######################################################## FROM ossrs/srs:ubuntu18-cache AS ubuntu18-baseline COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off && make FROM ossrs/srs:ubuntu18-cache AS ubuntu18-all COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=on --gb28181=on && make ######################################################## FROM ossrs/srs:ubuntu20-cache AS ubuntu20-baseline COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=off --gb28181=off && make FROM ossrs/srs:ubuntu20-cache AS ubuntu20-default COPY . /srs # Remove the ST from cache, which build with sanitizer, but we are not by default. RUN cd /usr/local/srs-cache/srs/trunk && rm -rf objs/Platform-*/3rdparty/st && du -sh objs/Platform-*/3rdparty/* RUN cd /srs/trunk && ./configure && make FROM ossrs/srs:ubuntu20-cache AS ubuntu20-all COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --srt=on --gb28181=on --apm=on --h265=on && make ######################################################## FROM ossrs/srs:ubuntu16-cache-cross-arm AS ubuntu16-cache-cross-armv7 COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --cross-build --cross-prefix=arm-linux-gnueabihf- && make FROM ossrs/srs:ubuntu16-cache-cross-aarch64 AS ubuntu16-cache-cross-aarch64 COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --cross-build --cross-prefix=aarch64-linux-gnu- && make ######################################################## FROM ossrs/srs:ubuntu20-cache-cross-arm AS ubuntu20-cache-cross-armv7 COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --cross-build --cross-prefix=arm-linux-gnueabihf- && make FROM ossrs/srs:ubuntu20-cache-cross-aarch64 AS ubuntu20-cache-cross-aarch64 COPY . /srs RUN cd /srs/trunk && ./configure --sanitizer=on --cross-build --cross-prefix=aarch64-linux-gnu- && make