2021-08-15 13:51:50 +00:00
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:dev-cache AS centos7-baseline
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:dev-cache AS centos7-no-webrtc
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off --rtc=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:dev-cache AS centos7-no-asm
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off --nasm=off --srtp-nasm=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-10-06 09:40:58 +00:00
|
|
|
FROM ossrs/srs:dev-cache AS centos7-all
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --gb28181=on && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:dev-cache AS centos7-ansi-no-ffmpeg
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off --cxx11=off --cxx14=off --ffmpeg-fit=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-01-11 00:40:05 +00:00
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:dev6-cache AS centos6-baseline
|
2022-01-11 00:40:05 +00:00
|
|
|
COPY . /srs
|
2022-10-22 23:21:15 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off --cxx11=off --cxx14=off --sanitizer=off && make -j2
|
2022-06-15 11:32:31 +00:00
|
|
|
|
2022-10-06 09:40:58 +00:00
|
|
|
FROM ossrs/srs:dev6-cache AS centos6-all
|
2022-06-15 11:32:31 +00:00
|
|
|
COPY . /srs
|
2022-10-22 23:21:15 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --gb28181=on --cxx11=off --cxx14=off --sanitizer=off && make -j2
|
2022-01-11 00:40:05 +00:00
|
|
|
|
2021-08-15 13:51:50 +00:00
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu16-cache AS ubuntu16-baseline
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-10-06 09:40:58 +00:00
|
|
|
FROM ossrs/srs:ubuntu16-cache AS ubuntu16-all
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --gb28181=on && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu18-cache AS ubuntu18-baseline
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-10-06 09:40:58 +00:00
|
|
|
FROM ossrs/srs:ubuntu18-cache AS ubuntu18-all
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --gb28181=on && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-baseline
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=off --gb28181=off && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-10-06 09:40:58 +00:00
|
|
|
FROM ossrs/srs:ubuntu20-cache AS ubuntu20-all
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-10-06 09:40:58 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --srt=on --gb28181=on && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu16-cross-arm AS ubuntu16-cross-armv7
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-08-13 02:27:14 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=arm-linux-gnueabihf- && make -j2
|
2021-08-15 13:51:50 +00:00
|
|
|
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu16-cross-aarch64 AS ubuntu16-cross-aarch64
|
2021-08-15 13:51:50 +00:00
|
|
|
COPY . /srs
|
2022-08-13 02:27:14 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=aarch64-linux-gnu- && make -j2
|
2022-08-12 12:12:13 +00:00
|
|
|
|
|
|
|
########################################################
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu20-cross-arm AS ubuntu20-cross-armv7
|
2022-08-12 12:12:13 +00:00
|
|
|
COPY . /srs
|
2022-08-13 02:27:14 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=arm-linux-gnueabihf- && make -j2
|
2022-08-12 12:12:13 +00:00
|
|
|
|
2022-08-13 02:27:14 +00:00
|
|
|
FROM ossrs/srs:ubuntu20-cross-aarch64 AS ubuntu20-cross-aarch64
|
2022-08-12 12:12:13 +00:00
|
|
|
COPY . /srs
|
2022-08-13 02:27:14 +00:00
|
|
|
RUN cd /srs/trunk && ./configure --jobs=2 --cross-build --cross-prefix=aarch64-linux-gnu- && make -j2
|