|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:dev-cache AS centos7-baseline
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:dev-cache AS centos7-no-webrtc
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --rtc=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:dev-cache AS centos7-no-asm
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --nasm=off --srtp-nasm=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:dev-cache AS centos7-srt
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:dev-cache AS centos7-ansi-no-ffmpeg
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --cxx11=off --cxx14=off --ffmpeg-fit=off && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:dev6-cache AS centos6-baseline
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --cxx11=off --cxx14=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:dev6-cache AS centos6-srt
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --cxx11=off --cxx14=off && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:ubuntu16-cache AS ubuntu16-baseline
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:ubuntu16-cache AS ubuntu16-srt
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:ubuntu18-cache AS ubuntu18-baseline
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:ubuntu18-cache AS ubuntu18-srt
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-baseline
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-srt
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:ubuntu16-cross-arm AS ubuntu16-cross-armv7
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=arm-linux-gnueabihf- && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:ubuntu16-cross-aarch64 AS ubuntu16-cross-aarch64
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=aarch64-linux-gnu- && make -j2
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
FROM ossrs/srs:ubuntu20-cross-arm AS ubuntu20-cross-armv7
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=arm-linux-gnueabihf- && make -j2
|
|
|
|
|
|
|
|
FROM ossrs/srs:ubuntu20-cross-aarch64 AS ubuntu20-cross-aarch64
|
|
|
|
COPY . /srs
|
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=aarch64-linux-gnu- && make -j2
|