1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-13 20:01:56 +00:00
srs/trunk/Dockerfile.pkg

15 lines
311 B
Text
Raw Normal View History

2021-11-03 23:37:17 +00:00
FROM ossrs/srs:dev
# version=4.0.145
ARG version
2022-01-13 10:26:28 +00:00
ARG SRS_AUTO_PACKAGER
2021-11-03 23:37:17 +00:00
# Install depends tools.
RUN yum install -y zip
# Build and install SRS.
ADD srs-server-${version}.tar.gz /srs
WORKDIR /srs/srs-server-${version}/trunk
RUN ./scripts/package.sh --x86-x64 --gb28181=on --apm=on --h265=on --tag=${version}
2021-11-03 23:37:17 +00:00