加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
winlinvip 提交于 2019-11-30 22:12 . Update
# https://docs.docker.com/engine/reference/builder/#arg
ARG tag=v2.0-r7
FROM centos:7 AS build
ARG tag
RUN yum install -y gcc make gcc-c++ patch unzip perl git
RUN cd /tmp && git clone --depth=1 --branch ${tag} https://gitee.com/winlinvip/srs.oschina.git srs
RUN cd /tmp/srs/trunk && ./configure && make && make install
COPY conf /usr/local/srs/conf
FROM centos:7 AS dist
ARG tag
EXPOSE 1935 1985 8080
COPY --from=build /usr/local/srs /usr/local/srs
WORKDIR /usr/local/srs
CMD ["./objs/srs", "-c", "conf/srs.conf"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化