mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
304 B
Docker
17 lines
304 B
Docker
3 years ago
|
FROM ossrs/srs:dev
|
||
|
|
||
|
# version=4.0.145
|
||
|
ARG version
|
||
|
|
||
|
# Install depends tools.
|
||
|
RUN yum install -y zip
|
||
|
|
||
|
# Setup the packager env.
|
||
|
ENV SRS_AUTO_PACKAGER ossrs
|
||
|
|
||
|
# Build and install SRS.
|
||
|
ADD srs-server-${version}.tar.gz /srs
|
||
|
WORKDIR /srs/srs-server-${version}/trunk
|
||
|
RUN ./scripts/package.sh --x86-x64 --jobs=2
|
||
|
|