mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
01. Support GB config as StreamCaster. 02. Support disable GB by --gb28181=off. 03. Add utests for SIP examples. 04. Wireshark plugin to decode TCP/9000 as rtp.rfc4571 05. Support MPEGPS program stream codec. 06. Add utest for PS stream codec. 07. Decode MPEGPS packet stream. 08. Carry RTP and PS packet as helper in PS message. 09. Support recover from error mode. 10. Support process by a pack of PS/TS messages. 11. Add statistic for recovered and msgs dropped. 12. Recover from err position fastly. 13. Define state machine for GB session. 14. Bind context to GB session. 15. Re-invite when media disconnected. 16. Update GitHub actions with GB28181. 17. Support parse CANDIDATE by env or pip. 18. Support mux GB28181 to RTMP. 19. Support regression test by srs-bench.
70 lines
2.7 KiB
Docker
70 lines
2.7 KiB
Docker
ARG ARCH
|
|
ARG IMAGE=ossrs/srs:ubuntu20
|
|
FROM ${ARCH}${IMAGE} AS build
|
|
|
|
ARG BUILDPLATFORM
|
|
ARG TARGETPLATFORM
|
|
ARG JOBS=2
|
|
ARG SRS_AUTO_PACKAGER
|
|
RUN echo "BUILDPLATFORM: $BUILDPLATFORM, TARGETPLATFORM: $TARGETPLATFORM, JOBS: $JOBS, PACKAGER: ${#SRS_AUTO_PACKAGER}"
|
|
|
|
# https://serverfault.com/questions/949991/how-to-install-tzdata-on-a-ubuntu-docker-image
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# To use if in RUN, see https://github.com/moby/moby/issues/7281#issuecomment-389440503
|
|
# Note that only exists issue like "/bin/sh: 1: [[: not found" for Ubuntu20, no such problem in CentOS7.
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
# Install depends tools.
|
|
RUN apt-get update && apt-get install -y gcc make g++ patch unzip perl git
|
|
|
|
# Copy source code to docker.
|
|
COPY . /srs
|
|
WORKDIR /srs/trunk
|
|
|
|
# Build and install SRS.
|
|
# Note that SRT is enabled by default, so we configure without --srt=on.
|
|
RUN ./configure --jobs=${JOBS} --gb28181=on && make -j${JOBS} && make install
|
|
|
|
# All config files for SRS.
|
|
RUN cp -R conf /usr/local/srs/conf && \
|
|
cp research/api-server/static-dir/index.html /usr/local/srs/objs/nginx/html/ && \
|
|
cp research/api-server/static-dir/favicon.ico /usr/local/srs/objs/nginx/html/ && \
|
|
cp research/players/crossdomain.xml /usr/local/srs/objs/nginx/html/ && \
|
|
cp -R research/console /usr/local/srs/objs/nginx/html/ && \
|
|
cp -R research/players /usr/local/srs/objs/nginx/html/ && \
|
|
cp -R 3rdparty/signaling/www/demos /usr/local/srs/objs/nginx/html/
|
|
|
|
# Copy the shared libraries for FFmpeg.
|
|
RUN mkdir -p /usr/local/shared && \
|
|
cp $(ldd /usr/local/bin/ffmpeg |grep libxml2 |awk '{print $3}') /usr/local/shared/ && \
|
|
cp $(ldd /usr/local/bin/ffmpeg |grep libicuuc |awk '{print $3}') /usr/local/shared/ && \
|
|
cp $(ldd /usr/local/bin/ffmpeg |grep libicudata |awk '{print $3}') /usr/local/shared/
|
|
|
|
############################################################
|
|
# dist
|
|
############################################################
|
|
FROM ${ARCH}ubuntu:focal AS dist
|
|
|
|
ARG BUILDPLATFORM
|
|
ARG TARGETPLATFORM
|
|
RUN echo "BUILDPLATFORM: $BUILDPLATFORM, TARGETPLATFORM: $TARGETPLATFORM"
|
|
|
|
# Expose ports for streaming @see https://github.com/ossrs/srs#ports
|
|
EXPOSE 1935 1985 8080 8000/udp 10080/udp
|
|
|
|
# FFMPEG 4.1
|
|
COPY --from=build /usr/local/shared/* /lib/
|
|
COPY --from=build /usr/local/bin/ffmpeg /usr/local/srs/objs/ffmpeg/bin/ffmpeg
|
|
# SRS binary, config files and srs-console.
|
|
COPY --from=build /usr/local/srs /usr/local/srs
|
|
|
|
# Test the version of binaries.
|
|
RUN ldd /usr/local/srs/objs/ffmpeg/bin/ffmpeg && \
|
|
/usr/local/srs/objs/ffmpeg/bin/ffmpeg -version && \
|
|
ldd /usr/local/srs/objs/srs && \
|
|
/usr/local/srs/objs/srs -v
|
|
|
|
# Default workdir and command.
|
|
WORKDIR /usr/local/srs
|
|
CMD ["./objs/srs", "-c", "conf/docker.conf"]
|