mirror of
https://github.com/ossrs/srs.git
synced 2025-02-12 19:31:53 +00:00
1. Build regression test tool for gb28181. 2. Run regression test for gb28181. 3. Format go code and eliminate logs. 4. Change base docker to ubuntu20.
24 lines
617 B
Text
24 lines
617 B
Text
FROM ossrs/srs:ubuntu20-cache
|
|
|
|
ARG MAKEARGS
|
|
RUN echo "MAKEARGS: ${MAKEARGS}"
|
|
|
|
# https://serverfault.com/questions/949991/how-to-install-tzdata-on-a-ubuntu-docker-image
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# For go to build and run utest.
|
|
ENV PATH $PATH:/usr/local/go/bin
|
|
|
|
RUN apt update -y && apt install -y gcc make g++ patch unzip perl git libasan5
|
|
|
|
# Build and install SRS.
|
|
COPY . /srs
|
|
WORKDIR /srs/trunk
|
|
|
|
# Note that we must enable the gcc7 or link failed.
|
|
RUN ./configure --srt=on --gb28181=on --apm=on --utest=on
|
|
RUN make utest ${MAKEARGS}
|
|
|
|
# Build benchmark tool.
|
|
RUN cd 3rdparty/srs-bench && make ${MAKEARGS}
|
|
|