mirror of
https://github.com/ossrs/srs.git
synced 2025-02-12 11:21:52 +00:00
9 lines
215 B
Text
9 lines
215 B
Text
FROM ossrs/srs:dev
|
|
|
|
# Install depends tools.
|
|
RUN yum install -y gcc make gcc-c++ patch unzip perl git
|
|
|
|
# Build and install SRS.
|
|
COPY . /srs/trunk
|
|
WORKDIR /srs/trunk
|
|
RUN ./configure --with-utest --jobs=2 && make -j2
|