1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/Dockerfile.pkg

17 lines
321 B
Text
Raw Normal View History

2021-11-03 23:37:17 +00:00
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
2021-12-04 02:43:04 +00:00
RUN ./scripts/package.sh --x86-x64 --jobs=2 --tag=${version}
2021-11-03 23:37:17 +00:00