Files
srs/trunk/Dockerfile.pkg

15 lines
302 B
Docker
Raw Normal View History

2021-11-04 07:37:17 +08:00
FROM ossrs/srs:dev
# version=4.0.145
ARG version
2022-01-13 18:26:28 +08:00
ARG SRS_AUTO_PACKAGER
2021-11-04 07:37:17 +08: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 --h265=on --tag=${version}
2021-11-04 07:37:17 +08:00