1 Star 0 Fork 10

michael/licode

forked from Gitee 极速下载/licode 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 966 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM ubuntu:20.04
MAINTAINER Lynckia
WORKDIR /opt
#Configure tzdata
ENV TZ=Europe/Madrid
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Download latest version of the code and install dependencies
RUN apt-get update && apt-get install -y git wget curl
COPY .nvmrc package.json /opt/licode/
COPY scripts/installUbuntuDeps.sh scripts/checkNvm.sh scripts/libnice-014.patch0 /opt/licode/scripts/
WORKDIR /opt/licode/scripts
RUN ./installUbuntuDeps.sh --cleanup --fast
WORKDIR /opt
COPY . /opt/licode
RUN mkdir /opt/licode/.git
# Clone and install licode
WORKDIR /opt/licode/scripts
RUN ./installErizo.sh -dfeacs && \
./../nuve/installNuve.sh && \
./installBasicExample.sh
RUN ldconfig /opt/licode/build/libdeps/build/lib
WORKDIR /opt/licode
ARG COMMIT
RUN echo $COMMIT > RELEASE
RUN date --rfc-3339='seconds' >> RELEASE
RUN cat RELEASE
WORKDIR /opt
ENTRYPOINT ["./licode/extras/docker/initDockerLicode.sh"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kandao1189/licode.git
git@gitee.com:kandao1189/licode.git
kandao1189
licode
licode
master

搜索帮助