1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-14 12:21:55 +00:00
srs/trunk/Dockerfile.test

10 lines
209 B
Text
Raw Normal View History

2021-08-15 04:05:15 +00:00
FROM ossrs/srs:dev
# Install depends tools.
RUN yum install -y gcc make gcc-c++ patch unzip perl git
# Build and install SRS.
2021-09-05 07:03:03 +00:00
COPY . /srs
2021-08-15 04:05:15 +00:00
WORKDIR /srs/trunk
RUN ./configure --with-utest --jobs=2 && make -j2