2
0

Dockerfile.cov 216 B

123456789
  1. FROM ossrs/srs:dev
  2. # Install depends tools.
  3. RUN yum install -y gcc make gcc-c++ patch unzip perl git
  4. # Build and install SRS.
  5. COPY . /srs
  6. WORKDIR /srs/trunk
  7. RUN ./configure --with-utest --gcov --jobs=2 && make -j2